You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
using System; |
|
|
|
using Codice.LogWrapper; |
|
|
|
namespace Unity.PlasticSCM.Editor.Help |
|
{ |
|
internal static class HelpLinkData |
|
{ |
|
internal static bool TryGet( |
|
string link, out HelpLink.LinkType type, out string content) |
|
{ |
|
type = HelpLink.LinkType.Link; |
|
content = string.Empty; |
|
|
|
int separatorIdx = link.IndexOf(':'); |
|
if (separatorIdx == -1) |
|
return false; |
|
|
|
string key = link.Substring(0, separatorIdx); |
|
|
|
try |
|
{ |
|
type = (HelpLink.LinkType)Enum.Parse( |
|
typeof(HelpLink.LinkType), key, true); |
|
} |
|
catch (Exception ex) |
|
{ |
|
mLog.ErrorFormat("Unable to get help link data: '{0}': {1}", |
|
key, ex.Message); |
|
mLog.DebugFormat("StackTrace: {0}", ex.StackTrace); |
|
|
|
return false; |
|
} |
|
|
|
content = link.Substring(separatorIdx + 1); |
|
|
|
return true; |
|
} |
|
|
|
static readonly ILog mLog = LogManager.GetLogger("HelpLinkData"); |
|
} |
|
}
|
|
|