public void OpenPageHistoryInBrowser(string title)
        {
            if (!Variables.UsingSecure)
            {
                string url = ArticleUrl.Replace("$1", title);

                Tools.OpenURLInBrowser(url + "?action=history");
            }
            else
            {
                Tools.OpenArticleHistoryInBrowser(title);
            }
        }
        public void OpenPageInBrowser(string title)
        {
            if (!Variables.UsingSecure)
            {
                string url = ArticleUrl.Replace("$1", Tools.WikiEncode(title));

                Tools.OpenURLInBrowser(url);
            }
            else
            {
                Tools.OpenArticleInBrowser(title);
            }
        }
Exemple #3
0
        public void OpenPageInBrowser(string title)
        {
            string url = ArticleUrl.Replace("$1", Tools.WikiEncode(title));

            Tools.OpenURLInBrowser(url);
        }