/// ------------------------------------------------------------------------------------
 /// <summary>
 /// Set string values for the given property for each writing system represented in the
 /// nodelist
 /// </summary>
 /// <param name="multiUnicodeproperty">A MultiUnicodeAccessor representing the property
 /// whose value is to be set</param>
 /// <param name="nodes">An XmlNodeList with the strings in one or more writing systems
 /// </param>
 /// ------------------------------------------------------------------------------------
 private void SetMultiUnicodeAlternatives(IMultiUnicode multiUnicodeproperty,
                                          XmlNodeList nodes)
 {
     foreach (XmlNode node in nodes)
     {
         int    ws          = GetWs(node.Attributes);
         string alternative = node.InnerText;
         if (ws > 0 && alternative != null && alternative != string.Empty)
         {
             multiUnicodeproperty.set_String(ws, m_strFactory.MakeString(alternative, ws));
         }
         // REVIEW: What should we do when the writing system is not defined in the database?
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Read multilingual Unicode data from XML fragments like
 /// &lt;Name&gt;
 ///		&lt;AUni ws="en"&gt;FRAME and OCM Categories&lt;/AUni&gt;
 ///	&lt;/Name&gt;
 /// </summary>
 private void SetMultiUnicodeFromXml(XmlReader xrdr, IMultiUnicode mu)
 {
     if (xrdr.IsEmptyElement)
     {
         xrdr.Read();
         return;
     }
     if (xrdr.ReadToDescendant("AUni"))
     {
         do
         {
             string sWs  = xrdr.GetAttribute("ws");
             string sVal = xrdr.ReadString();
             int    ws   = m_wsf.GetWsFromStr(sWs);
             if (ws != 0)
             {
                 mu.set_String(ws, sVal);
             }
         } while (xrdr.ReadToNextSibling("AUni"));
     }
     xrdr.Read();                // read the end tag.
 }
Exemplo n.º 3
0
 private void SetMultiUnicodeFromXml(XmlReader xrdr, IMultiUnicode mu)
 {
     if (xrdr.IsEmptyElement)
     {
         xrdr.Read();
         return;
     }
     if (xrdr.ReadToDescendant("AUni"))
     {
         do
         {
             string sWs  = xrdr.GetAttribute("ws");
             string sVal = xrdr.ReadString();
             if (sWs == "en")
             {
                 continue;                                       // don't overwrite the English string
             }
             int ws = GetWsFromStr(sWs);
             mu.set_String(ws, sVal);
         } while (xrdr.ReadToNextSibling("AUni"));
     }
     xrdr.Read();                // read the end tag.
 }
Exemplo n.º 4
0
		/// <summary>
		/// Read multilingual Unicode data from XML fragments like
		/// &lt;Name&gt;
		///		&lt;AUni ws="en"&gt;FRAME and OCM Categories&lt;/AUni&gt;
		///	&lt;/Name&gt;
		/// </summary>
		private void SetMultiUnicodeFromXml(XmlReader xrdr, IMultiUnicode mu)
		{
			if (xrdr.IsEmptyElement)
			{
				xrdr.Read();
				return;
			}
			if (xrdr.ReadToDescendant("AUni"))
			{
				do
				{
					string sWs = xrdr.GetAttribute("ws");
					string sVal = xrdr.ReadString();
					int ws = m_wsf.GetWsFromStr(sWs);
					if (ws != 0)
						mu.set_String(ws, sVal);
				} while (xrdr.ReadToNextSibling("AUni"));
			}
			xrdr.Read();	// read the end tag.
		}
Exemplo n.º 5
0
		private void SetMultiUnicodeFromXml(XmlReader xrdr, IMultiUnicode mu)
		{
			if (xrdr.IsEmptyElement)
			{
				xrdr.Read();
				return;
			}
			if (xrdr.ReadToDescendant("AUni"))
			{
				do
				{
					string sWs = xrdr.GetAttribute("ws");
					string sVal = xrdr.ReadString();
					if (sWs == "en")
						continue;		// don't overwrite the English string
					int ws = GetWsFromStr(sWs);
					mu.set_String(ws, sVal);
				} while (xrdr.ReadToNextSibling("AUni"));
			}
			xrdr.Read();	// read the end tag.
		}
Exemplo n.º 6
0
		void SetString(IMultiUnicode target, int ws, string text)
		{
			target.set_String(ws, Cache.TsStrFactory.MakeString(text, ws));
		}
Exemplo n.º 7
0
 void SetString(IMultiUnicode target, int ws, string text)
 {
     target.set_String(ws, Cache.TsStrFactory.MakeString(text, ws));
 }
Exemplo n.º 8
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Set string values for the given property for each writing system represented in the
		/// nodelist
		/// </summary>
		/// <param name="multiUnicodeproperty">A MultiUnicodeAccessor representing the property
		/// whose value is to be set</param>
		/// <param name="nodes">An XmlNodeList with the strings in one or more writing systems
		/// </param>
		/// ------------------------------------------------------------------------------------
		private void SetMultiUnicodeAlternatives(IMultiUnicode multiUnicodeproperty,
			XmlNodeList nodes)
		{
			foreach (XmlNode node in nodes)
			{
				int ws = GetWs(node.Attributes);
				string alternative = node.InnerText;
				if (ws > 0 && alternative != null && alternative != string.Empty)
					multiUnicodeproperty.set_String(ws, m_strFactory.MakeString(alternative, ws));
				// REVIEW: What should we do when the writing system is not defined in the database?
			}
		}