BUG以及任务筛选
Inheritance: System.Windows.Forms.Form
Example #1
0
        public string GetCommitMessage2(IntPtr hParentWnd,
                                        string parameters,
                                        string commonURL,
                                        string commonRoot,
                                        string[] pathList,
                                        string originalMessage,
                                        string bugID,
                                        out string bugIDOut,
                                        out string[] revPropNames,
                                        out string[] revPropValues)
        {
            repoUrl  = commonURL;
            repoRoot = commonRoot;

            lang.load(parameters);

            bugIDOut      = bugID;
            revPropNames  = new string[0];
            revPropValues = new string[0];

            siteManage = new SiteManageForm(this);

            issForm = new IssuesForm(this);

            DialogResult res = siteManage.ShowDialog();

            return(res == DialogResult.OK ? genCommitMessage() : originalMessage);
        }
Example #2
0
        /// <summary>
        /// SVN扩展接口必须实现类
        /// </summary>

        public string GetCommitMessage(IntPtr hParentWnd, string parameters, string commonRoot, string[] pathList, string originalMessage)
        {
            lang.load(parameters);

            siteManage = new SiteManageForm(this);

            issForm = new IssuesForm(this);

            DialogResult res = siteManage.ShowDialog();

            return(res == DialogResult.OK ? genCommitMessage() : originalMessage);
        }
Example #3
0
        public string GetCommitMessage2(IntPtr hParentWnd,
            string parameters,
            string commonURL,
            string commonRoot,
            string[] pathList,
            string originalMessage,
            string bugID,
            out string bugIDOut,
            out string[] revPropNames,
            out string[] revPropValues)
        {
            repoUrl = commonURL;
               repoRoot = commonRoot;

               lang.load(parameters);

               bugIDOut = bugID;
               revPropNames = new string[0];
               revPropValues = new string[0];

               siteManage = new SiteManageForm(this);

               issForm = new IssuesForm(this);

               DialogResult res = siteManage.ShowDialog();
               return res == DialogResult.OK ? genCommitMessage() : originalMessage;
        }
Example #4
0
        /// <summary>
        /// SVN扩展接口必须实现类
        /// </summary>
        public string GetCommitMessage(IntPtr hParentWnd, string parameters, string commonRoot, string[] pathList, string originalMessage)
        {
            lang.load(parameters);

               siteManage = new SiteManageForm(this);

               issForm = new IssuesForm(this);

               DialogResult res = siteManage.ShowDialog();

               return res == DialogResult.OK ? genCommitMessage() : originalMessage;
        }