2009/dap/contacts Overview.html,1.60,1.61

Update of /sources/public/2009/dap/contacts
In directory hutz:/tmp/cvs-serv9259/contacts

Modified Files:
	Overview.html 
Log Message:
- Addition of 'updatedSince' in ContactFindOptions.

Index: Overview.html
===================================================================
RCS file: /sources/public/2009/dap/contacts/Overview.html,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- Overview.html	24 Jun 2010 09:08:01 -0000	1.60
+++ Overview.html	30 Jun 2010 08:26:05 -0000	1.61
@@ -1138,6 +1138,19 @@
                href='#contact-interface'><code>Contact</code></a> object results.
             </p>
           </dd>
+          <dt>
+            attribute DOMString updatedSince
+          </dt>
+          <dd>
+            <p>
+              Return only contact records that have been updated on or after the given time, specified as an xs:dateTime.
+            </p>
+            <p>
+              This filter is based on the <a
+               href="#widl-ContactProperties-updated"><code>updated</code></a> field as defined in <a
+               href="#contactproperties-interface"><code>ContactProperties</code></a>.
+            </p>
+          </dd>
         </dl>
       </section>
       <section>
@@ -1478,7 +1491,9 @@
              href="#contact-interface"><code>Contact</code></a> object. A lower value denotes a higher placing in the ultimate sorting of
             <a
              href="#contacts-interface"><code>Contacts</code></a> <a
-             href="#widl-Contacts-find">find()</a> results.
+             href="#widl-Contacts-find">find()</a> results. Search weights for each <a
+             href="#contactproperties-interface"><code>ContactProperties</code></a> field are defined in <a
+             href="#search-weights">Appendix B</a>.
           </p>
           <p>
             For example, if a <a>search filter</a> of &#39;Bob&#39; matches to <code>name.givenName</code> in Object A and to
@@ -1507,8 +1522,8 @@
           </p>
           <p>
             A <a>search filter</a> is used to search all the fields of a <a
-             href="#contacts-interface"><code>Contacts</code></a> database and represents the logical intersection, or <code>&cap;</code>,
-            of provided values that are matched therein.
+             href="#contacts-interface"><code>Contacts</code></a> database and represents the logical union, or <code>&cup;</code>, of
+            provided values that are matched therein.
           </p>
           <p>
             All contact searching MUST apply a loose-matching policy to the <a>search filter</a> provided. If a <a
@@ -1694,9 +1709,9 @@
                 Using ECMA-262 3rd Edition regular expression syntax and psuedo-code, the <a>search filter</a> provided can be represented
                 as: 
 <pre>
-      ( displayName = /&and;.*Robert.*$/i ) &cap; ( name.formatted = /&and;.*Robert.*$/i ) &cap; ( nickname = /&and;.*Robert.*$/i ) 
-        &cap; ( tags.value = /&and;.*Robert.*$/i ) &cap; ( phoneNumbers.value = /&and;.*Robert.*$/i )  &cap; ( addresses.formatted = /&and;.*Robert.*$/i ) 
-          &cap; ... etc for all attributes and properties ...
+      ( displayName = /&and;.*Robert.*$/i ) &cup; ( name.formatted = /&and;.*Robert.*$/i ) &cup; ( nickname = /&and;.*Robert.*$/i ) 
+        &cup; ( tags.value = /&and;.*Robert.*$/i ) &cup; ( phoneNumbers.value = /&and;.*Robert.*$/i )  &cup; ( addresses.formatted = /&and;.*Robert.*$/i ) 
+          &cup; ... etc for all contact attributes and properties ...
 </pre>
               </li>
               <li>

Received on Wednesday, 30 June 2010 08:26:10 UTC