CVS Update: xmlpull-api-v1/src/java/api/org/xmlpull/v1

Aleksander Andrzej Slominski <[email protected]> Wed, 29 Nov 2006 16:04:56 -0500 (EST)
Newsgroups gmane.text.xml.xmlpull.devel
Message-ID <[email protected]>
--N-GcSoVjAK4GsLCWxSWxr0IhHSRpNSvWwWpPvBj
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

aslom       06/11/29 16:04:56

  Modified:    src/java/api/org/xmlpull/v1 XmlPullParserFactory.java
                        XmlSerializer.java
  Log:
  cleanup (typos, old comments)
  
  Revision  Changes    Path
  1.28      +2 -2      xmlpull-api-v1/src/java/api/org/xmlpull/v1/XmlPullParserFactory.java
  
  Index: XmlPullParserFactory.java
  ===================================================================
  RCS file: /l/extreme/cvspub/xmlpull-api-v1/src/java/api/org/xmlpull/v1/XmlPullParserFactory.java,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -b -t -w -r1.27 -r1.28
  --- XmlPullParserFactory.java	8 Mar 2005 02:05:08 -0000	1.27
  +++ XmlPullParserFactory.java	29 Nov 2006 21:04:55 -0000	1.28
  @@ -98,7 +98,7 @@
        *
        * @param name The name of feature to be retrieved.
        * @return The value of named feature.
  -     *     Unknown features are <string>always</strong> returned as false
  +     *     Unknown features are <strong>always</strong> returned as false
        */
   
       public boolean getFeature (String name) {
  
  
  
  1.17      +37 -37    xmlpull-api-v1/src/java/api/org/xmlpull/v1/XmlSerializer.java
  
  Index: XmlSerializer.java
  ===================================================================
  RCS file: /l/extreme/cvspub/xmlpull-api-v1/src/java/api/org/xmlpull/v1/XmlSerializer.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -b -t -w -r1.16 -r1.17
  --- XmlSerializer.java	1 Feb 2004 19:17:34 -0000	1.16
  +++ XmlSerializer.java	29 Nov 2006 21:04:55 -0000	1.17
  @@ -5,8 +5,8 @@
   import java.io.Writer;
   
   /**
  - * Define an interface to serialziation of XML Infoset.
  - * This interface abstracts away if serialized XML is XML 1.0 comaptible text or
  + * Define an interface to serialization of XML Infoset.
  + * This interface abstracts away if serialized XML is XML 1.0 compatible text or
    * other formats of XML 1.0 serializations (such as binary XML for example with WBXML).
    *
    * <p><b>PLEASE NOTE:</b> This interface will be part of XmlPull 1.2 API.
  @@ -27,7 +27,7 @@
    * <p><b>NOTE:</b> writing  CDSECT, ENTITY_REF, IGNORABLE_WHITESPACE,
    *  PROCESSING_INSTRUCTION, COMMENT, and DOCDECL in some implementations
    * may not be supported (for example when serializing to WBXML).
  - * In such case IllegalStateException will be thrown and it is recommened
  + * In such case IllegalStateException will be thrown and it is recommended
    * to use an optional feature to signal that implementation is not
    * supporting this kind of output.
    */
  @@ -40,7 +40,7 @@
        * <a href="http://www.xmlpull.org/v1/doc/features.html">
        * http://www.xmlpull.org/v1/doc/features.html</a>.
        *
  -     * If feature is not recocgnized or can not be set
  +     * If feature is not recognized or can not be set
        * then IllegalStateException MUST be thrown.
        *
        * @exception IllegalStateException If the feature is not supported or can not be set
  @@ -63,12 +63,12 @@
       
       /**
        * Set the value of a property.
  -     * (the property name is recommened to be URI for uniqueness).
  +     * (the property name is recommended to be URI for uniqueness).
        * Some well known optional properties are defined in
        * <a href="http://www.xmlpull.org/v1/doc/properties.html">
        * http://www.xmlpull.org/v1/doc/properties.html</a>.
        *
  -     * If property is not recocgnized or can not be set
  +     * If property is not recognized or can not be set
        * then IllegalStateException MUST be thrown.
        *
        * @exception IllegalStateException if the property is not supported or can not be set
  @@ -81,7 +81,7 @@
        * Look up the value of a property.
        *
        * The property name is any fully-qualified URI. I
  -     * <p><strong>NOTE:</strong> unknown properties are <string>always</strong> returned as null
  +     * <p><strong>NOTE:</strong> unknown properties are <strong>always</strong> returned as null
        *
        * @param name The name of property to be retrieved.
        * @return The value of named property.
  @@ -144,7 +144,7 @@
        * If there is no prefix bound to this namespace return null
        * but if generatePrefix is false then return generated prefix.
        *
  -     * <p><b>NOTE:</b> if the prefix is empty string "" and defualt namespace is bound
  +     * <p><b>NOTE:</b> if the prefix is empty string "" and default namespace is bound
        * to this prefix then empty string ("") is returned.
        *
        * <p><b>NOTE:</b> prefixes "xml" and "xmlns" are already bound
  @@ -176,7 +176,7 @@
       /**
        * Returns the namespace URI of the current element as set by startTag().
        *
  -     * <p><b>NOTE:</b> that measn in particaulr that: <ul>
  +     * <p><b>NOTE:</b> that means in particular that: <ul>
        * <li>if there was startTag("", ...) then getNamespace() returns ""
        * <li>if there was startTag(null, ...) then getNamespace() returns null
        * </ul>
  @@ -201,7 +201,7 @@
        * The explicit prefixes for namespaces can be established by calling setPrefix()
        * immediately before this method.
        * If namespace is null no namespace prefix is printed but just name.
  -     * If namespace is empty string then serialzier will make sure that
  +     * If namespace is empty string then serializer will make sure that
        * default empty namespace is declared (in XML 1.0 xmlns='')
        * or throw IllegalStateException if default namespace is already bound
        * to non-empty string.
  @@ -224,7 +224,7 @@
        * <p><b>Background:</b> in kXML endTag had no arguments, and non matching tags were
        *  very difficult to find...
        * If namespace is null no namespace prefix is printed but just name.
  -     * If namespace is empty string then serialzier will make sure that
  +     * If namespace is empty string then serializeer will make sure that
        * default empty namespace is declared (in XML 1.0 xmlns='').
        */
       XmlSerializer endTag (String namespace, String name)
  @@ -315,7 +315,7 @@
        * before flush() is called on underlying output stream.
        *
        * <p><b>NOTE:</b> if there is need to close start tag
  -     * (so no more attribute() calls are allowed) but without flushinging output
  +     * (so no more attribute() calls are allowed) but without flushing output
        * call method text() with empty string (text("")).
        *
        */
  
  
  


--N-GcSoVjAK4GsLCWxSWxr0IhHSRpNSvWwWpPvBj
Content-Type: text/html; charset=US-ASCII
Content-Transfer-Encoding: 7bit


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
</head>

<!-- Network content -->


<body style="background-color: #ffffff;">

<!--~-|**|PrettyHtmlStartT|**|-~-->
<div id="ygrp-mlmsg" style="width:655px; position:relative;">
  <div id="ygrp-msg" style="width: 490px; padding: 0 15px 0 0; float:left;  z-index:1;">
<!--~-|**|PrettyHtmlEndT|**|-~-->

    <div id="ygrp-text">
            <p>aslom       06/11/29 16:04:56<br>
<br>
Modified:    src/java/api/<wbr>org/xmlpull/<wbr>v1 XmlPullParserFactor<wbr>y.java<br>
                        XmlSerializer.<wbr>java<br>
  Log:<br>
  cleanup (typos, old comments)<br>
  <br>
  Revision  Changes    Path<br>
  1.28      &#43;2 -2      xmlpull-api-<wbr>v1/src/java/<wbr>api/org/xmlpull/<wbr>v1/XmlPullParser<wbr>Factory.java<br>
  <br>
  Index: XmlPullParserFactor<wbr>y.java<br>
  ============<wbr>=========<wbr>=========<wbr>=========<wbr>=========<wbr>=========<wbr>=========<wbr>=<br>
  RCS file: /l/extreme/cvspub/<wbr>xmlpull-api-<wbr>v1/src/java/<wbr>api/org/xmlpull/<wbr>v1/XmlPullParser<wbr>Factory.java,<wbr>v<br>
  retrieving revision 1.27<br>
  retrieving revision 1.28<br>
  diff -u -b -t -w -r1.27 -r1.28<br>
  --- XmlPullParserFactor<wbr>y.java	8 Mar 2005 02:05:08 -0000	1.27<br>
  &#43;++ XmlPullParserFactor<wbr>y.java	29 Nov 2006 21:04:55 -0000	1.28<br>
  @@ -98,7 &#43;98,7 @@<br>
        *<br>
        * @param name The name of feature to be retrieved.<br>
        * @return The value of named feature.<br>
  -     *     Unknown features are &lt;string&gt;always&lt;<wbr>/strong&gt; returned as false<br>
  +     *     Unknown features are &lt;strong&gt;always&lt;<wbr>/strong&gt; returned as false<br>
        */<br>
   <br>
       public boolean getFeature (String name) {<br>
  <br>
  <br>
  <br>
  1.17      &#43;37 -37    xmlpull-api-<wbr>v1/src/java/<wbr>api/org/xmlpull/<wbr>v1/XmlSerializer<wbr>.java<br>
  <br>
  Index: XmlSerializer.<wbr>java<br>
  ============<wbr>=========<wbr>=========<wbr>=========<wbr>=========<wbr>=========<wbr>=========<wbr>=<br>
  RCS file: /l/extreme/cvspub/<wbr>xmlpull-api-<wbr>v1/src/java/<wbr>api/org/xmlpull/<wbr>v1/XmlSerializer<wbr>.java,v<br>
  retrieving revision 1.16<br>
  retrieving revision 1.17<br>
  diff -u -b -t -w -r1.16 -r1.17<br>
  --- XmlSerializer.<wbr>java	1 Feb 2004 19:17:34 -0000	1.16<br>
  &#43;++ XmlSerializer.<wbr>java	29 Nov 2006 21:04:55 -0000	1.17<br>
  @@ -5,8 &#43;5,8 @@<br>
   import java.io.Writer;<br>
   <br>
   /**<br>
  - * Define an interface to serialziation of XML Infoset.<br>
  - * This interface abstracts away if serialized XML is XML 1.0 comaptible text or<br>
  + * Define an interface to serialization of XML Infoset.<br>
  + * This interface abstracts away if serialized XML is XML 1.0 compatible text or<br>
    * other formats of XML 1.0 serializations (such as binary XML for example with WBXML).<br>
    *<br>
    * &lt;p&gt;&lt;b&gt;PLEASE NOTE:&lt;/b&gt; This interface will be part of XmlPull 1.2 API.<br>
  @@ -27,7 &#43;27,7 @@<br>
    * &lt;p&gt;&lt;b&gt;NOTE:&lt;<wbr>/b&gt; writing  CDSECT, ENTITY_REF, IGNORABLE_WHITESPAC<wbr>E,<br>
    *  PROCESSING_INSTRUCT<wbr>ION, COMMENT, and DOCDECL in some implementations<br>
    * may not be supported (for example when serializing to WBXML).<br>
  - * In such case IllegalStateExcepti<wbr>on will be thrown and it is recommened<br>
  + * In such case IllegalStateExcepti<wbr>on will be thrown and it is recommended<br>
    * to use an optional feature to signal that implementation is not<br>
    * supporting this kind of output.<br>
    */<br>
  @@ -40,7 &#43;40,7 @@<br>
        * &lt;a href=&quot;<a href="http://www.xmlpull.org/v1/doc/features.html">http://www.xmlpull.<wbr>org/v1/doc/<wbr>features.<wbr>html</a>&quot;&gt;<br>
        * <a href="http://www.xmlpull.org/v1/doc/features.html">http://www.xmlpull.<wbr>org/v1/doc/<wbr>features.<wbr>html</a>&lt;/a&gt;.<br>
        *<br>
  -     * If feature is not recocgnized or can not be set<br>
  +     * If feature is not recognized or can not be set<br>
        * then IllegalStateExcepti<wbr>on MUST be thrown.<br>
        *<br>
        * @exception IllegalStateExcepti<wbr>on If the feature is not supported or can not be set<br>
  @@ -63,12 &#43;63,12 @@<br>
       <br>
       /**<br>
        * Set the value of a property.<br>
  -     * (the property name is recommened to be URI for uniqueness).<br>
  +     * (the property name is recommended to be URI for uniqueness).<br>
        * Some well known optional properties are defined in<br>
        * &lt;a href=&quot;<a href="http://www.xmlpull.org/v1/doc/properties.html">http://www.xmlpull.<wbr>org/v1/doc/<wbr>properties.<wbr>html</a>&quot;&gt;<br>
        * <a href="http://www.xmlpull.org/v1/doc/properties.html">http://www.xmlpull.<wbr>org/v1/doc/<wbr>properties.<wbr>html</a>&lt;/a&gt;.<br>
        *<br>
  -     * If property is not recocgnized or can not be set<br>
  +     * If property is not recognized or can not be set<br>
        * then IllegalStateExcepti<wbr>on MUST be thrown.<br>
        *<br>
        * @exception IllegalStateExcepti<wbr>on if the property is not supported or can not be set<br>
  @@ -81,7 &#43;81,7 @@<br>
        * Look up the value of a property.<br>
        *<br>
        * The property name is any fully-qualified URI. I<br>
  -     * &lt;p&gt;&lt;strong&gt;NOTE:<wbr>&lt;/strong&gt; unknown properties are &lt;string&gt;always&lt;<wbr>/strong&gt; returned as null<br>
  +     * &lt;p&gt;&lt;strong&gt;NOTE:<wbr>&lt;/strong&gt; unknown properties are &lt;strong&gt;always&lt;<wbr>/strong&gt; returned as null<br>
        *<br>
        * @param name The name of property to be retrieved.<br>
        * @return The value of named property.<br>
  @@ -144,7 &#43;144,7 @@<br>
        * If there is no prefix bound to this namespace return null<br>
        * but if generatePrefix is false then return generated prefix.<br>
        *<br>
  -     * &lt;p&gt;&lt;b&gt;NOTE:&lt;<wbr>/b&gt; if the prefix is empty string &quot;&quot; and defualt namespace is bound<br>
  +     * &lt;p&gt;&lt;b&gt;NOTE:&lt;<wbr>/b&gt; if the prefix is empty string &quot;&quot; and default namespace is bound<br>
        * to this prefix then empty string (&quot;&quot;) is returned.<br>
        *<br>
        * &lt;p&gt;&lt;b&gt;NOTE:&lt;<wbr>/b&gt; prefixes &quot;xml&quot; and &quot;xmlns&quot; are already bound<br>
  @@ -176,7 &#43;176,7 @@<br>
       /**<br>
        * Returns the namespace URI of the current element as set by startTag().<br>
        *<br>
  -     * &lt;p&gt;&lt;b&gt;NOTE:&lt;<wbr>/b&gt; that measn in particaulr that: &lt;ul&gt;<br>
  +     * &lt;p&gt;&lt;b&gt;NOTE:&lt;<wbr>/b&gt; that means in particular that: &lt;ul&gt;<br>
        * &lt;li&gt;if there was startTag(&quot;&quot;, ...) then getNamespace(<wbr>) returns &quot;&quot;<br>
        * &lt;li&gt;if there was startTag(null, ...) then getNamespace(<wbr>) returns null<br>
        * &lt;/ul&gt;<br>
  @@ -201,7 &#43;201,7 @@<br>
        * The explicit prefixes for namespaces can be established by calling setPrefix()<br>
        * immediately before this method.<br>
        * If namespace is null no namespace prefix is printed but just name.<br>
  -     * If namespace is empty string then serialzier will make sure that<br>
  +     * If namespace is empty string then serializer will make sure that<br>
        * default empty namespace is declared (in XML 1.0 xmlns='')<br>
        * or throw IllegalStateExcepti<wbr>on if default namespace is already bound<br>
        * to non-empty string.<br>
  @@ -224,7 &#43;224,7 @@<br>
        * &lt;p&gt;&lt;b&gt;Background:<wbr>&lt;/b&gt; in kXML endTag had no arguments, and non matching tags were<br>
        *  very difficult to find...<br>
        * If namespace is null no namespace prefix is printed but just name.<br>
  -     * If namespace is empty string then serialzier will make sure that<br>
  +     * If namespace is empty string then serializeer will make sure that<br>
        * default empty namespace is declared (in XML 1.0 xmlns='').<br>
        */<br>
       XmlSerializer endTag (String namespace, String name)<br>
  @@ -315,7 &#43;315,7 @@<br>
        * before flush() is called on underlying output stream.<br>
        *<br>
        * &lt;p&gt;&lt;b&gt;NOTE:&lt;<wbr>/b&gt; if there is need to close start tag<br>
  -     * (so no more attribute() calls are allowed) but without flushinging output<br>
  +     * (so no more attribute() calls are allowed) but without flushing output<br>
        * call method text() with empty string (text(&quot;&quot;)).<br>
        *<br>
        */<br>
  <br>
  <br>
  <br>
<br>
</p>
    </div>  

    <!--~-|**|PrettyHtmlStart|**|-~-->
    <span width="1" style="color: white;">__._,_.___</span>
    <!-- Start the section with Message In topic -->
    <div id="ygrp-actbar">
              <span class="left">
          <a href="http://groups.yahoo.com/group/xmlpull-dev/message/28;_ylc=X3oDMTMxZDh2dm9hBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBG1zZ0lkAzg3NwRzZWMDZnRyBHNsawN2dHBjBHN0aW1lAzExNjQ4MzYyNjYEdHBjSWQDMjg-">
            Messages in this topic          </a> (<span class="bld">44</span>)
        </span>
        <a href="http://groups.yahoo.com/group/xmlpull-dev/post;_ylc=X3oDMTJvOGJxdDRoBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBG1zZ0lkAzg3NwRzZWMDZnRyBHNsawNycGx5BHN0aW1lAzExNjQ4MzYyNjY-?act=reply&messageNum=877">
          <span class="bld">
            Reply          </span> (via web post)
        </a>  | 
        <a href="http://groups.yahoo.com/group/xmlpull-dev/post;_ylc=X3oDMTJlMjJvOHMzBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBHNlYwNmdHIEc2xrA250cGMEc3RpbWUDMTE2NDgzNjI2Ng--" class="bld">
          Start a new topic        </a>
          </div> 
    <!-------     Start Nav Bar  ------>
    <!-- |**|begin egp html banner|**| -->
    <div id="ygrp-vitnav">
                <a href="http://groups.yahoo.com/group/xmlpull-dev/messages;_ylc=X3oDMTJlNDltdmlpBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBHNlYwNmdHIEc2xrA21zZ3MEc3RpbWUDMTE2NDgzNjI2Ng--">Messages</a>  
        
        
        
        
        
        
        
    </div>  
    <!-- |**|end egp html banner|**| -->

    <!-- Do not have place to put it yet -->
    <div id="ygrp-grft">
          </div>

    <!-- yahoo logo -->
    <!-- |**|begin egp html banner|**| -->
    <div id="ygrp-ft">
      <a href="http://groups.yahoo.com/;_ylc=X3oDMTJkZmppdWtoBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBHNlYwNmdHIEc2xrA2dmcARzdGltZQMxMTY0ODM2MjY2">
      <img src="http://us.i1.yimg.com/us.yimg.com/i/yg/img/logo/ma_grp_160.gif" height="15" width="106" border="0" alt="Yahoo! Groups"></a> <br>
      <a href="http://groups.yahoo.com/group/xmlpull-dev/join;_ylc=X3oDMTJmNXJjMm5nBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBHNlYwNmdHIEc2xrA3N0bmdzBHN0aW1lAzExNjQ4MzYyNjY-">Change settings via the Web</a> (Yahoo! ID required) <br>
      Change settings via email: <a href="mailto:[email protected]?subject=Email Delivery: Digest">Switch delivery to Daily Digest</a> | <a href = "mailto:[email protected]?subject=Change Delivery Format: Traditional">Switch format to Traditional</a> <br>

      <a href="http://groups.yahoo.com/group/xmlpull-dev;_ylc=X3oDMTJkdjg1bHFtBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBHNlYwNmdHIEc2xrA2hwZgRzdGltZQMxMTY0ODM2MjY2">
        Visit Your Group 
      </a> |
      <a href="http://docs.yahoo.com/info/terms/">
        Yahoo! Groups Terms of Use      </a> |
      <a href="mailto:[email protected]?subject=">
        Unsubscribe      </a> 
    </div>     <!-- |**|end egp html banner|**| -->
  </div> <!-- ygrp-msg -->

  
  <!-- Sponsor -->
  <!-- |**|begin egp html banner|**| -->
  <div id="ygrp-sponsor" style="width:140px;float: left; clear: none; margin-left: 5px; background:white; margin-bottom:25px ;position:absolute; top:0; right: 0;">
    <!-- Network content -->
    
    <!-- Start vitality -->
    <div id="ygrp-vital">
              <div id="vithd">Recent Activity</div>
        <ul style="list-style-type:none; padding: 0; margin: 2px 0;">
                <li style="clear: both;">
      <div class="ct" style="float: right;"><span style="display:none">&nbsp;</span>1</div>
      <div class="cat"><a href="http://groups.yahoo.com/group/xmlpull-dev/members;_ylc=X3oDMTJmYmZybGY4BF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBHNlYwN2dGwEc2xrA3ZtYnJzBHN0aW1lAzExNjQ4MzYyNjY-">New Members</a></div>
    </li>
  
            
            
            
            
            
        </ul>
            <a href="http://groups.yahoo.com/group/xmlpull-dev;_ylc=X3oDMTJlbmE0NDhoBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBHNlYwN2dGwEc2xrA3ZnaHAEc3RpbWUDMTE2NDgzNjI2Ng--">
        Visit Your Group      </a>
    </div> 
                <div id="hd">SPONSORED LINKS</div>
      <div id="ov">
        <ul>
                    <li><a href="http://groups.yahoo.com/gads;_ylc=X3oDMTJjM2xiZTVnBF9TAzk3MzU5NzE0BF9wAzEEZ3JwSWQDNjQ1NjI1NQRncnBzcElkAzE3MDYwMzAzOTAEc2VjA3NsbW9kBHN0aW1lAzExNjQ4MzYyNjY-?t=ms&k=Xml+sql+server&w1=Xml+sql+server&w2=Xml+content+management&w3=Xml+document&w4=Rss+xml&w5=Xml+training&c=5&s=97&g=2&.sig=D5pjkrPnFZ4IBdgwTFPeNw">Xml sql server</a></li>
                    <li><a href="http://groups.yahoo.com/gads;_ylc=X3oDMTJjdmo1dmltBF9TAzk3MzU5NzE0BF9wAzIEZ3JwSWQDNjQ1NjI1NQRncnBzcElkAzE3MDYwMzAzOTAEc2VjA3NsbW9kBHN0aW1lAzExNjQ4MzYyNjY-?t=ms&k=Xml+content+management&w1=Xml+sql+server&w2=Xml+content+management&w3=Xml+document&w4=Rss+xml&w5=Xml+training&c=5&s=97&g=2&.sig=-MKTBHng5j2E0enZ0lu6MA">Xml content management</a></li>
                    <li><a href="http://groups.yahoo.com/gads;_ylc=X3oDMTJjbjEzbDg1BF9TAzk3MzU5NzE0BF9wAzMEZ3JwSWQDNjQ1NjI1NQRncnBzcElkAzE3MDYwMzAzOTAEc2VjA3NsbW9kBHN0aW1lAzExNjQ4MzYyNjY-?t=ms&k=Xml+document&w1=Xml+sql+server&w2=Xml+content+management&w3=Xml+document&w4=Rss+xml&w5=Xml+training&c=5&s=97&g=2&.sig=4a401E3_nwYau1YewoooSg">Xml document</a></li>
                    <li><a href="http://groups.yahoo.com/gads;_ylc=X3oDMTJjaDg1NWRoBF9TAzk3MzU5NzE0BF9wAzQEZ3JwSWQDNjQ1NjI1NQRncnBzcElkAzE3MDYwMzAzOTAEc2VjA3NsbW9kBHN0aW1lAzExNjQ4MzYyNjY-?t=ms&k=Rss+xml&w1=Xml+sql+server&w2=Xml+content+management&w3=Xml+document&w4=Rss+xml&w5=Xml+training&c=5&s=97&g=2&.sig=Nz2s-9B48CdGLIFKmmKhHw">Rss xml</a></li>
                    <li><a href="http://groups.yahoo.com/gads;_ylc=X3oDMTJjMmM5MjM5BF9TAzk3MzU5NzE0BF9wAzUEZ3JwSWQDNjQ1NjI1NQRncnBzcElkAzE3MDYwMzAzOTAEc2VjA3NsbW9kBHN0aW1lAzExNjQ4MzYyNjY-?t=ms&k=Xml+training&w1=Xml+sql+server&w2=Xml+content+management&w3=Xml+document&w4=Rss+xml&w5=Xml+training&c=5&s=97&g=2&.sig=83TLc5fP2HqZY9QrkpSu3w">Xml training</a></li>
                  </ul>
      </div>
    
    <!-- Network content -->
                <div id="nc">
              <div class="ad">
                      <div id="hd1">Need traffic?</div> 
<p><a href="http://us.ard.yahoo.com/SIG=12hed6ijt/M=493064.8985663.9760769.8674578/D=groups/S=1706030390:NC/Y=YAHOO/EXP=1164843466/A=3848644/R=0/SIG=131l83flq/*http://searchmarketing.yahoo.com/arp/srchv2.php?o=US2006&cmp=Yahoo&ctv=Groups5&s=Y&s2=&s3=&b=50">Drive customers</a></p> 
<p>With search ads</p> 
<p>on Yahoo!</p>                  </div>
                    <div class="ad">
                        <div id="hd1">Y! Toolbar</div>
  <p><a href="http://us.lrd.yahoo.com/_ylc=X3oDMTJvcjRsYzRmBF9TAzk3MzU5NzE0BF9wAzIEZ3JwSWQDNjQ1NjI1NQRncnBzcElkAzE3MDYwMzAzOTAEc2VjA25jbW9kBHNsawN0b29sYmFyBHN0aW1lAzExNjQ4MzYyNjU-;_ylg=1/SIG=11c6dvmk9/**http%3a//toolbar.yahoo.com/%3f.cpdl=ygrps">Get it Free!</a></p>
  <p>easy 1-click access</p>
  <p>to your groups.</p>
                  </div>
                    <div class="ad">
                        <div id="hd1">Yahoo! Groups</div>
  <p><a href="http://groups.yahoo.com/start;_ylc=X3oDMTJvcWZkN2RzBF9TAzk3MzU5NzE0BF9wAzMEZ3JwSWQDNjQ1NjI1NQRncnBzcElkAzE3MDYwMzAzOTAEc2VjA25jbW9kBHNsawNncm91cHMyBHN0aW1lAzExNjQ4MzYyNjU-">Start a group</a></p>
  <p>in 3 easy steps.</p>
  <p>Connect with others.</p>
                  </div>
          </div>
      
  </div>   <!-- |**|end egp html banner|**| -->
  <div style="clear:both; color: #FFF; font-size:1px;">.</div>
</div> <img src="http://geo.yahoo.com/serv?s=97359714/grpId=6456255/grpspId=1706030390/msgId=877/stime=1164836266/nc1=3848644/nc2=2/nc3=3" width="1" height="1"> <br>
<span  style="color: white;">__,_._,___</span>
<!--~-|**|PrettyHtmlEnd|**|-~-->
</body>
<!--~-|**|PrettyHtmlStart|**|-~-->
<head>
<style type="text/css">
<!--
#ygrp-mlmsg {font-size:13px; font-family: arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial,helvetica,clean,sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;*font-size:100%;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
    font-family: Georgia;	
}
#ygrp-text p{
    margin: 0 0 1em 0;
}
#ygrp-tpmsgs{
    font-family: Arial;	
    clear: both;
}
#ygrp-vitnav{
	padding-top: 10px;
	font-family: Verdana;
	font-size: 77%;
	margin: 0;
}
#ygrp-vitnav a{
	padding: 0 1px;
}
#ygrp-actbar{
	clear: both;
	margin: 25px 0;
	white-space:nowrap;
	color: #666;
	text-align: right;
}
#ygrp-actbar .left{
	float: left;
	white-space:nowrap;
}
.bld{font-weight:bold;}
#ygrp-grft{
	font-family: Verdana;
	font-size: 77%;
	padding: 15px 0;
}
#ygrp-ft{
  font-family: verdana;
  font-size: 77%;
  border-top: 1px solid #666; 
  padding: 5px 0; 
}
#ygrp-mlmsg #logo{
  padding-bottom: 10px;
}

#ygrp-vital{
	background-color: #e0ecee;
	margin-bottom: 20px;
	padding: 2px 0 8px 8px;
}
#ygrp-vital #vithd{
	font-size: 77%;
	font-family: Verdana;
	font-weight: bold;
	color: #333;
	text-transform: uppercase;
}
#ygrp-vital ul{
	padding: 0;
	margin: 2px 0;
}
#ygrp-vital ul li{
  list-style-type: none;
  clear: both;
  border: 1px solid #e0ecee;  
}
#ygrp-vital ul li .ct{
  font-weight: bold;
  color: #ff7900;
  float: right;
  width: 2em;
  text-align:right;
  padding-right: .5em;
}
#ygrp-vital ul li .cat{
  font-weight: bold;
}
#ygrp-vital a {
	text-decoration: none;
}

#ygrp-vital a:hover{
  text-decoration: underline;
}

#ygrp-sponsor #hd{
	color: #999;
	font-size: 77%;
}
#ygrp-sponsor #ov{
	padding: 6px 13px;
	background-color: #e0ecee;
	margin-bottom: 20px;
}
#ygrp-sponsor #ov ul{
	padding: 0 0 0 8px;
	margin: 0;
}
#ygrp-sponsor #ov li{
	list-style-type: square;
	padding: 6px 0;
	font-size: 77%;
}
#ygrp-sponsor #ov li a{
	text-decoration: none;
	font-size: 130%;
}
#ygrp-sponsor #nc {
  background-color: #eee;
  margin-bottom: 20px;
  padding: 0 8px;
}
#ygrp-sponsor .ad{
	padding: 8px 0;
}
#ygrp-sponsor .ad #hd1{
	font-family: Arial;
	font-weight: bold;
	color: #628c2a;
	font-size: 100%;
	line-height: 122%;
}
#ygrp-sponsor .ad a{
	text-decoration: none;
}
#ygrp-sponsor .ad a:hover{
	text-decoration: underline;
}
#ygrp-sponsor .ad p{
	margin: 0;
}
o {font-size: 0; }
.MsoNormal {
   margin: 0 0 0 0;
}
#ygrp-text tt{
  font-size: 120%;
}
blockquote{margin: 0 0 0 4px;}
.replbq {margin:4}
-->
</style>
</head>
<!--~-|**|PrettyHtmlEnd|**|-~-->
</html><!--End group email -->


--N-GcSoVjAK4GsLCWxSWxr0IhHSRpNSvWwWpPvBj--