Exemplo n.º 1
0
        /// <summary> The create report.  </summary>
        /// <param name="shelveset"> The shelveset. </param>
        /// <returns> The default view.  </returns>
        public ActionResult PartialShelvesetReportView(ShelvesetModel shelveset)
        {
            ShelvesetReport shelvesetReport = new ShelvesetReport(shelveset.Name, shelveset.OwnerName);

            return(this.PartialView("Review", new ReviewModel()
            {
                ShelvesetName = shelveset.Name, ShelvesetReport = shelvesetReport.ReportBody
            }));
        }
Exemplo n.º 2
0
        /// <summary>
        /// Handles the Click event of the b control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
        private void Button_Click(object sender, EventArgs e)
        {
            var shelvesetReport = new ShelvesetReport(((Button)sender).Tag.ToString(), TfsConnect.CurrentUser);

            shelvesetReport.PrepareEmail(string.IsNullOrEmpty(Properties.Settings.Default.EmailRecipient) ? string.Empty : Properties.Settings.Default.EmailRecipient);
            if (Settings.Default.CloseShelvesetWindowOnSelection)
            {
                this.form.Close();
            }
        }
Exemplo n.º 3
0
        /// <summary>
        /// The application main.
        /// </summary>
        /// <param name="args">The arguments.</param>
        public static void Main(string[] args)
        {
            // initialize the connection to TFS.
            TfsConnect.Initialize(ConfigurationManager.AppSettings.Get("teamProjectUrl"));

            // set up the menu.
            int shelvesetToShow;

            int.TryParse(ConfigurationManager.AppSettings.Get("shelvesetToShow"), out shelvesetToShow);
            var menu = new Dictionary <string, string>();

            if (shelvesetToShow > 0)
            {
                Console.WriteLine(LocalizableResource.introText + Environment.NewLine);
                var orderedShelvesets = TfsConnect.GetOrderedShelvesets(TfsConnect.CurrentUser);
                for (var i = 0; i < System.Math.Min(shelvesetToShow, orderedShelvesets.Count); i++)
                {
                    Console.WriteLine(i + 1 + " " + orderedShelvesets[i].Name);
                    menu.Add((i + 1).ToString(), orderedShelvesets[i].Name);
                }
            }

            // get user input and creates the code review report
            while (true)
            {
                Console.Write(Environment.NewLine + string.Format("Shelveset ({0}-{1}): ", 1, menu.Count));
                var userInput = Console.ReadLine();

                if (userInput == "exit" || userInput == "kill")
                {
                    Environment.Exit(0);
                }

                if (!string.IsNullOrEmpty(userInput))
                {
                    userInput = userInput.Replace("\"", string.Empty);
                }

                if (string.IsNullOrEmpty(userInput))
                {
                    continue;
                }

                string shelvesetName, shelvesetOwnerName;
                if (userInput.Contains("\\"))
                {
                    var values = userInput.Split('\\');
                    shelvesetOwnerName = values[0];
                    shelvesetName      = values[1];
                }
                else if (menu.ContainsKey(userInput))
                {
                    // get the shelveset name and the owner name.
                    menu.TryGetValue(userInput, out shelvesetName);
                    shelvesetOwnerName = TfsConnect.CurrentUser;
                }
                else
                {
                    shelvesetName      = userInput;
                    shelvesetOwnerName = TfsConnect.CurrentUser;
                }

                ShelvesetReport shelvesetReport = new ShelvesetReport(shelvesetName, shelvesetOwnerName);
                if (shelvesetReport.Exception == null)
                {
                    // open in browser.
                    if (bool.Parse(ConfigurationManager.AppSettings.Get("openInBrowser")))
                    {
                        // save as file.
                        string pathName = shelvesetReport.SaveHtmlFile(shelvesetName, ConfigurationManager.AppSettings.Get("outputFolder"), true);
                        Console.WriteLine(string.Format(LocalizableResource.doneSavingFile, pathName));
                    }

                    // open in email.
                    if (bool.Parse(ConfigurationManager.AppSettings.Get("openAsEmail")))
                    {
                        Console.WriteLine(LocalizableResource.doneCreatingEmail);
                        shelvesetReport.PrepareEmail(ConfigurationManager.AppSettings["mailTo"]);
                    }
                }
                else
                {
                    Console.WriteLine(shelvesetReport.Exception.Message);
                }
            }
        }