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

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

aslom       06/11/29 16:07:40

  Modified:    src/java/api/org/xmlpull/v1 XmlSerializer.java
  Log:
  added versions of startTag/attribute/endTag with prefix proposed for XmlPull API 1.2
  
  Revision  Changes    Path
  1.18      +52 -53    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.17
  retrieving revision 1.18
  diff -u -b -t -w -r1.17 -r1.18
  --- XmlSerializer.java	29 Nov 2006 21:04:55 -0000	1.17
  +++ XmlSerializer.java	29 Nov 2006 21:07:40 -0000	1.18
  @@ -224,65 +224,64 @@
        * <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 serializeer 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='').
        */
       XmlSerializer endTag (String namespace, String name)
           throws IOException, IllegalArgumentException, IllegalStateException;
   
  +    /**
  +     * Writes a start tag with the given namespace and name.
  +     * <br />If there is no prefix defined (prefix == null) for the given namespace,
  +     * a prefix will be defined automatically.
  +     * <br />If explicit prefixes is passed (prefix != null) then it will be used
  +      *and namespace declared if not already declared or
  +     * throw IllegalStateException the same prefix was already set on this
  +     * element (setPrefix()) and was bound to different namespace.
  +     * <br />If namespace is null then prefix must be null too or IllegalStateException is thrown.
  +     * <br />If namespace is null then no namespace prefix is printed but just name.
  +     * <br />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.
  +     */
  +    XmlSerializer startTag (String prefix, String namespace, String name)
  +        throws IOException, IllegalArgumentException, IllegalStateException;
   
  -    //    /**
  -    //     * Writes a start tag with the given namespace and name.
  -    //     * <br />If there is no prefix defined (prefix == null) for the given namespace,
  -    //     * a prefix will be defined automatically.
  -    //     * <br />If explicit prefixes is passed (prefix != null) then it will be used
  -    //      *and namespace declared if not already declared or
  -    //     * throw IllegalStateException the same prefix was already set on this
  -    //     * element (setPrefix()) and was bound to different namespace.
  -    //     * <br />If namespace is null then prefix must be null too or IllegalStateException is thrown.
  -    //     * <br />If namespace is null then no namespace prefix is printed but just name.
  -    //     * <br />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.
  -    //     */
  -    //    XmlSerializer startTag (String prefix, String namespace, String name)
  -    //        throws IOException, IllegalArgumentException, IllegalStateException;
  -    //
  -    //    /**
  -    //     * Write an attribute. Calls to attribute() MUST follow a call to
  -    //     * startTag() immediately.
  -    //     * <br />If there is no prefix defined (prefix == null) for the given namespace,
  -    //     * a prefix will be defined automatically.
  -    //     * <br />If explicit prefixes is passed (prefix != null) then it will be used
  -    //     * and namespace declared if not already declared or
  -    //     * throw IllegalStateException the same prefix was already set on this
  -    //     * element (setPrefix()) and was bound to different namespace.
  -    //     * <br />If namespace is null then prefix must be null too or IllegalStateException is thrown.
  -    //     * <br />If namespace is null then no namespace prefix is printed but just name.
  -    //     * <br />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.
  -    //     */
  -    //    XmlSerializer attribute (String prefix, String namespace, String name, String value)
  -    //        throws IOException, IllegalArgumentException, IllegalStateException;
  -    //
  -    //    /**
  -    //     * Write end tag. Repetition of namespace, prefix, and name is just for avoiding errors.
  -    //     * <br />If namespace or name arguments are different from corresponding startTag call
  -    //     * then IllegalArgumentException is thrown, if prefix argument is not null and is different
  -    //     * from corresponding starTag then IllegalArgumentException is thrown.
  -    //     * <br />If namespace is null then prefix must be null too or IllegalStateException is thrown.
  -    //     * <br />If namespace is null then no namespace prefix is printed but just name.
  -    //     * <br />If namespace is empty string then serializer will make sure that
  -    //     * default empty namespace is declared (in XML 1.0 xmlns='').
  -    //     * <p><b>Background:</b> in kXML endTag had no arguments, and non matching tags were
  -    //     *  very difficult to find...</p>
  -    //     */
  -    // ALEK: This is really optional as prefix in end tag MUST correspond to start tag but good for error checking
  -    //    XmlSerializer endTag (String prefix, String namespace, String name)
  -    //        throws IOException, IllegalArgumentException, IllegalStateException;
  +    /**
  +     * Write an attribute. Calls to attribute() MUST follow a call to
  +     * startTag() immediately.
  +     * <br />If there is no prefix defined (prefix == null) for the given namespace,
  +     * a prefix will be defined automatically.
  +     * <br />If explicit prefixes is passed (prefix != null) then it will be used
  +     * and namespace declared if not already declared or
  +     * throw IllegalStateException the same prefix was already set on this
  +     * element (setPrefix()) and was bound to different namespace.
  +     * <br />If namespace is null then prefix must be null too or IllegalStateException is thrown.
  +     * <br />If namespace is null then no namespace prefix is printed but just name.
  +     * <br />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.
  +     */
  +    XmlSerializer attribute (String prefix, String namespace, String name, String value)
  +        throws IOException, IllegalArgumentException, IllegalStateException;
  +
  +    /**
  +     * Write end tag. Repetition of namespace, prefix, and name is just for avoiding errors.
  +     * <br />If namespace or name arguments are different from corresponding startTag call
  +     * then IllegalArgumentException is thrown, if prefix argument is not null and is different
  +     * from corresponding starTag then IllegalArgumentException is thrown.
  +     * <br />If namespace is null then prefix must be null too or IllegalStateException is thrown.
  +     * <br />If namespace is null then no namespace prefix is printed but just name.
  +     * <br />If namespace is empty string then serializer will make sure that
  +     * default empty namespace is declared (in XML 1.0 xmlns='').
  +     * <p><b>Background:</b> this methods is really optional (other endTag works)
  +     * as prefix in end tag MUST correspond to start tag but good for error checking
  +     * </p>
  +     */
  +    XmlSerializer endTag (String prefix, String namespace, String name)
  +        throws IOException, IllegalArgumentException, IllegalStateException;
   
       /**
        * Writes text, where special XML chars are escaped automatically
  
  
  


--RFcoZzPgdrTATsNR1xghecFmS3Jcd145fcTAGHC
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:07:40<br>
<br>
Modified:    src/java/api/<wbr>org/xmlpull/<wbr>v1 XmlSerializer.<wbr>java<br>
  Log:<br>
  added versions of startTag/attribute/<wbr>endTag with prefix proposed for XmlPull API 1.2<br>
  <br>
  Revision  Changes    Path<br>
  1.18      &#43;52 -53    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.17<br>
  retrieving revision 1.18<br>
  diff -u -b -t -w -r1.17 -r1.18<br>
  --- XmlSerializer.<wbr>java	29 Nov 2006 21:04:55 -0000	1.17<br>
  &#43;++ XmlSerializer.<wbr>java	29 Nov 2006 21:07:40 -0000	1.18<br>
  @@ -224,65 &#43;224,64 @@<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 serializeer 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>
        */<br>
       XmlSerializer endTag (String namespace, String name)<br>
           throws IOException, IllegalArgumentExce<wbr>ption, IllegalStateExcepti<wbr>on;<br>
   <br>
  +    /**<br>
  +     * Writes a start tag with the given namespace and name.<br>
  +     * &lt;br /&gt;If there is no prefix defined (prefix == null) for the given namespace,<br>
  +     * a prefix will be defined automatically.<br>
  +     * &lt;br /&gt;If explicit prefixes is passed (prefix != null) then it will be used<br>
  +      *and namespace declared if not already declared or<br>
  +     * throw IllegalStateExcepti<wbr>on the same prefix was already set on this<br>
  +     * element (setPrefix()<wbr>) and was bound to different namespace.<br>
  +     * &lt;br /&gt;If namespace is null then prefix must be null too or IllegalStateExcepti<wbr>on is thrown.<br>
  +     * &lt;br /&gt;If namespace is null then no namespace prefix is printed but just name.<br>
  +     * &lt;br /&gt;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>
  +     */<br>
  +    XmlSerializer startTag (String prefix, String namespace, String name)<br>
  +        throws IOException, IllegalArgumentExce<wbr>ption, IllegalStateExcepti<wbr>on;<br>
   <br>
  -    //    /**<br>
  -    //     * Writes a start tag with the given namespace and name.<br>
  -    //     * &lt;br /&gt;If there is no prefix defined (prefix == null) for the given namespace,<br>
  -    //     * a prefix will be defined automatically.<br>
  -    //     * &lt;br /&gt;If explicit prefixes is passed (prefix != null) then it will be used<br>
  -    //      *and namespace declared if not already declared or<br>
  -    //     * throw IllegalStateExcepti<wbr>on the same prefix was already set on this<br>
  -    //     * element (setPrefix()<wbr>) and was bound to different namespace.<br>
  -    //     * &lt;br /&gt;If namespace is null then prefix must be null too or IllegalStateExcepti<wbr>on is thrown.<br>
  -    //     * &lt;br /&gt;If namespace is null then no namespace prefix is printed but just name.<br>
  -    //     * &lt;br /&gt;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>
  -    //     */<br>
  -    //    XmlSerializer startTag (String prefix, String namespace, String name)<br>
  -    //        throws IOException, IllegalArgumentExce<wbr>ption, IllegalStateExcepti<wbr>on;<br>
  -    //<br>
  -    //    /**<br>
  -    //     * Write an attribute. Calls to attribute() MUST follow a call to<br>
  -    //     * startTag() immediately.<br>
  -    //     * &lt;br /&gt;If there is no prefix defined (prefix == null) for the given namespace,<br>
  -    //     * a prefix will be defined automatically.<br>
  -    //     * &lt;br /&gt;If explicit prefixes is passed (prefix != null) then it will be used<br>
  -    //     * and namespace declared if not already declared or<br>
  -    //     * throw IllegalStateExcepti<wbr>on the same prefix was already set on this<br>
  -    //     * element (setPrefix()<wbr>) and was bound to different namespace.<br>
  -    //     * &lt;br /&gt;If namespace is null then prefix must be null too or IllegalStateExcepti<wbr>on is thrown.<br>
  -    //     * &lt;br /&gt;If namespace is null then no namespace prefix is printed but just name.<br>
  -    //     * &lt;br /&gt;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>
  -    //     */<br>
  -    //    XmlSerializer attribute (String prefix, String namespace, String name, String value)<br>
  -    //        throws IOException, IllegalArgumentExce<wbr>ption, IllegalStateExcepti<wbr>on;<br>
  -    //<br>
  -    //    /**<br>
  -    //     * Write end tag. Repetition of namespace, prefix, and name is just for avoiding errors.<br>
  -    //     * &lt;br /&gt;If namespace or name arguments are different from corresponding startTag call<br>
  -    //     * then IllegalArgumentExce<wbr>ption is thrown, if prefix argument is not null and is different<br>
  -    //     * from corresponding starTag then IllegalArgumentExce<wbr>ption is thrown.<br>
  -    //     * &lt;br /&gt;If namespace is null then prefix must be null too or IllegalStateExcepti<wbr>on is thrown.<br>
  -    //     * &lt;br /&gt;If namespace is null then no namespace prefix is printed but just name.<br>
  -    //     * &lt;br /&gt;If namespace is empty string then serializer will make sure that<br>
  -    //     * default empty namespace is declared (in XML 1.0 xmlns='').<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...&lt;/p&gt;<br>
  -    //     */<br>
  -    // ALEK: This is really optional as prefix in end tag MUST correspond to start tag but good for error checking<br>
  -    //    XmlSerializer endTag (String prefix, String namespace, String name)<br>
  -    //        throws IOException, IllegalArgumentExce<wbr>ption, IllegalStateExcepti<wbr>on;<br>
  +    /**<br>
  +     * Write an attribute. Calls to attribute() MUST follow a call to<br>
  +     * startTag() immediately.<br>
  +     * &lt;br /&gt;If there is no prefix defined (prefix == null) for the given namespace,<br>
  +     * a prefix will be defined automatically.<br>
  +     * &lt;br /&gt;If explicit prefixes is passed (prefix != null) then it will be used<br>
  +     * and namespace declared if not already declared or<br>
  +     * throw IllegalStateExcepti<wbr>on the same prefix was already set on this<br>
  +     * element (setPrefix()<wbr>) and was bound to different namespace.<br>
  +     * &lt;br /&gt;If namespace is null then prefix must be null too or IllegalStateExcepti<wbr>on is thrown.<br>
  +     * &lt;br /&gt;If namespace is null then no namespace prefix is printed but just name.<br>
  +     * &lt;br /&gt;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>
  +     */<br>
  +    XmlSerializer attribute (String prefix, String namespace, String name, String value)<br>
  +        throws IOException, IllegalArgumentExce<wbr>ption, IllegalStateExcepti<wbr>on;<br>
  +<br>
  +    /**<br>
  +     * Write end tag. Repetition of namespace, prefix, and name is just for avoiding errors.<br>
  +     * &lt;br /&gt;If namespace or name arguments are different from corresponding startTag call<br>
  +     * then IllegalArgumentExce<wbr>ption is thrown, if prefix argument is not null and is different<br>
  +     * from corresponding starTag then IllegalArgumentExce<wbr>ption is thrown.<br>
  +     * &lt;br /&gt;If namespace is null then prefix must be null too or IllegalStateExcepti<wbr>on is thrown.<br>
  +     * &lt;br /&gt;If namespace is null then no namespace prefix is printed but just name.<br>
  +     * &lt;br /&gt;If namespace is empty string then serializer will make sure that<br>
  +     * default empty namespace is declared (in XML 1.0 xmlns='').<br>
  +     * &lt;p&gt;&lt;b&gt;Background:<wbr>&lt;/b&gt; this methods is really optional (other endTag works)<br>
  +     * as prefix in end tag MUST correspond to start tag but good for error checking<br>
  +     * &lt;/p&gt;<br>
  +     */<br>
  +    XmlSerializer endTag (String prefix, String namespace, String name)<br>
  +        throws IOException, IllegalArgumentExce<wbr>ption, IllegalStateExcepti<wbr>on;<br>
   <br>
       /**<br>
        * Writes text, where special XML chars are escaped automatically<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=X3oDMTMxaXN0ZzczBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBG1zZ0lkAzg3NQRzZWMDZnRyBHNsawN2dHBjBHN0aW1lAzExNjQ4MzUyODAEdHBjSWQDMjg-">
            Messages in this topic          </a> (<span class="bld">43</span>)
        </span>
        <a href="http://groups.yahoo.com/group/xmlpull-dev/post;_ylc=X3oDMTJvdDNpa2VpBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBG1zZ0lkAzg3NQRzZWMDZnRyBHNsawNycGx5BHN0aW1lAzExNjQ4MzUyODA-?act=reply&messageNum=875">
          <span class="bld">
            Reply          </span> (via web post)
        </a>  | 
        <a href="http://groups.yahoo.com/group/xmlpull-dev/post;_ylc=X3oDMTJlZzQ4dmNwBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBHNlYwNmdHIEc2xrA250cGMEc3RpbWUDMTE2NDgzNTI4MA--" 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=X3oDMTJlZWhmZGY3BF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBHNlYwNmdHIEc2xrA21zZ3MEc3RpbWUDMTE2NDgzNTI4MA--">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=X3oDMTJkZm9nZDdsBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBHNlYwNmdHIEc2xrA2dmcARzdGltZQMxMTY0ODM1Mjgw">
      <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=X3oDMTJmZGhsZzltBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBHNlYwNmdHIEc2xrA3N0bmdzBHN0aW1lAzExNjQ4MzUyODA-">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=X3oDMTJkZnEyajFzBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBHNlYwNmdHIEc2xrA2hwZgRzdGltZQMxMTY0ODM1Mjgw">
        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=X3oDMTJmdDFxcmdzBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBHNlYwN2dGwEc2xrA3ZtYnJzBHN0aW1lAzExNjQ4MzUyODA-">New Members</a></div>
    </li>
  
            
            
            
            
            
        </ul>
            <a href="http://groups.yahoo.com/group/xmlpull-dev;_ylc=X3oDMTJlbHZrNnNxBF9TAzk3MzU5NzE0BGdycElkAzY0NTYyNTUEZ3Jwc3BJZAMxNzA2MDMwMzkwBHNlYwN2dGwEc2xrA3ZnaHAEc3RpbWUDMTE2NDgzNTI4MA--">
        Visit Your Group      </a>
    </div> 
                <div id="hd">SPONSORED LINKS</div>
      <div id="ov">
        <ul>
                    <li><a href="http://groups.yahoo.com/gads;_ylc=X3oDMTJjNzFrMnR2BF9TAzk3MzU5NzE0BF9wAzEEZ3JwSWQDNjQ1NjI1NQRncnBzcElkAzE3MDYwMzAzOTAEc2VjA3NsbW9kBHN0aW1lAzExNjQ4MzUyODE-?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=X3oDMTJjMmM1aGduBF9TAzk3MzU5NzE0BF9wAzIEZ3JwSWQDNjQ1NjI1NQRncnBzcElkAzE3MDYwMzAzOTAEc2VjA3NsbW9kBHN0aW1lAzExNjQ4MzUyODE-?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=X3oDMTJjcDcxdG03BF9TAzk3MzU5NzE0BF9wAzMEZ3JwSWQDNjQ1NjI1NQRncnBzcElkAzE3MDYwMzAzOTAEc2VjA3NsbW9kBHN0aW1lAzExNjQ4MzUyODE-?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=X3oDMTJjbWVuOXFjBF9TAzk3MzU5NzE0BF9wAzQEZ3JwSWQDNjQ1NjI1NQRncnBzcElkAzE3MDYwMzAzOTAEc2VjA3NsbW9kBHN0aW1lAzExNjQ4MzUyODE-?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=X3oDMTJjNzhzdnVyBF9TAzk3MzU5NzE0BF9wAzUEZ3JwSWQDNjQ1NjI1NQRncnBzcElkAzE3MDYwMzAzOTAEc2VjA3NsbW9kBHN0aW1lAzExNjQ4MzUyODE-?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">New business?</div> 
<p><a href="http://us.ard.yahoo.com/SIG=12h3ilucv/M=493064.8985663.9760769.8674578/D=groups/S=1706030390:NC/Y=YAHOO/EXP=1164842481/A=3848640/R=0/SIG=131an6mds/*http://searchmarketing.yahoo.com/arp/srchv2.php?o=US2002&cmp=Yahoo&ctv=Groups1&s=Y&s2=&s3=&b=50">Get new customers.</a></p> 
<p>List your web site</p> 
<p>in Yahoo! Search.</p>                  </div>
                    <div class="ad">
                        <div id="hd1">Y! Toolbar</div>
  <p><a href="http://us.lrd.yahoo.com/_ylc=X3oDMTJvMm4yc2lpBF9TAzk3MzU5NzE0BF9wAzIEZ3JwSWQDNjQ1NjI1NQRncnBzcElkAzE3MDYwMzAzOTAEc2VjA25jbW9kBHNsawN0b29sYmFyBHN0aW1lAzExNjQ4MzUyODA-;_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=X3oDMTJvb2c2bGhhBF9TAzk3MzU5NzE0BF9wAzMEZ3JwSWQDNjQ1NjI1NQRncnBzcElkAzE3MDYwMzAzOTAEc2VjA25jbW9kBHNsawNncm91cHMyBHN0aW1lAzExNjQ4MzUyODA-">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=875/stime=1164835280/nc1=3848640/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 -->


--RFcoZzPgdrTATsNR1xghecFmS3Jcd145fcTAGHC--