View the DQSD CVS repository here:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/

Update of /cvsroot/dqsd/dqsd/searches
In directory sc8-pr-cvs1:/tmp/cvs-serv29391/searches

Added Files:
        pat.xml patapp.xml patno.xml 
Log Message:
* pat, patapp and patno - Patent database searches (Phil Albert)

--- NEW FILE: pat.xml ---
<search function="pat">

<COMMENT>Copied from patno.xml.  Remember, field names are CASE SENSITIVE, 
at least at the Patent Office site.</COMMENT>

  <name>Patent Search</name>
  <contributor>Philip Albert</contributor>
  <description>Retrieve a patent from U.S. PTO using a Boolean search terms.<br/>
  <div class="helpboxDescLabels">Example:</div>
  <table class="helpboxDescTable">
    <tr><td>pat implement</td></tr>
    <tr><td>pat "sharp implement"</td></tr>
    <tr><td>pat IN/Fred AND whistle</td></tr>
  </table>

  If more than one word is used, either quote all the words or put operators between 
them.
  </description>
  <category>Legal</category>

<link>http://164.195.100.11/netahtml/srch-adv.htm</link>
  <form name="patf" ACTION="http://164.195.100.11/netacgi/nph-Parser"; METHOD="GET">
        <INPUT TYPE="HIDDEN" NAME="Query" VALUE="" />
        <INPUT TYPE="HIDDEN" NAME="Sect1" VALUE="PTO2" />
        <INPUT TYPE="HIDDEN" NAME="Sect2" VALUE="HITOFF" />
        <INPUT TYPE="HIDDEN" NAME="u"     VALUE="/netahtml/search-adv.htm" />
        <INPUT TYPE="HIDDEN" NAME="r"     VALUE="0" />
        <INPUT TYPE="HIDDEN" NAME="p"     VALUE="1" />
        <INPUT TYPE="HIDDEN" NAME="f"     VALUE="S" />
        <INPUT TYPE="HIDDEN" NAME="l"     VALUE="50" />
        <INPUT TYPE="HIDDEN" NAME="d"     VALUE="pall" />
  </form>
  
  <script><![CDATA[
    function pat(q)
    {
      if( nullArgs("pat", q) )
        return;

      document.patf.Query.value = q;
      submitForm(patf);
    }
  ]]></script>

  <copyright>
        Copyright (c) 2002 David Bau
        Mods copyright Philip Albert 2002
        Distributed under the terms of the
        GNU Public License, Version 2 (http://www.gnu.org/copyleft/gpl.txt)
  </copyright>
</search>
--- NEW FILE: patapp.xml ---
<search function="patapp">

<COMMENT>Copied from pat.xml.  Remember, field names are CASE SENSITIVE, 
at least at the Patent Office site.</COMMENT>

  <name>Patent Application Search</name>
  <contributor>Gerald Gray</contributor>
  <description>Retrieve a (published) patent application from U.S. PTO using a Boolean 
search terms.<br/>
  <div class="helpboxDescLabels">Example:</div>
  <table class="helpboxDescTable">
    <tr><td>patapp implement</td></tr>
    <tr><td>patapp "sharp implement"</td></tr>
    <tr><td>patapp IN/Fred AND whistle</td></tr>
  </table>

  If more than one word is used, either quote all the words or put operators between 
them.
  </description>
  <category>Legal</category>

<link>http://appft1.uspto.gov/netahtml/PTO/search-adv.html</link>
  <form name="appf" ACTION="http://appft1.uspto.gov/netacgi/nph-Parser"; METHOD="GET">
        <INPUT TYPE="HIDDEN" NAME="Query" VALUE="" />
        <INPUT TYPE="HIDDEN" NAME="Sect1" VALUE="PTO2" />
        <INPUT TYPE="HIDDEN" NAME="Sect2" VALUE="HITOFF" />
        <INPUT TYPE="HIDDEN" NAME="u"     VALUE="/netahtml/PTO/search-adv.html" />
        <INPUT TYPE="HIDDEN" NAME="r"     VALUE="0" />
        <INPUT TYPE="HIDDEN" NAME="p"     VALUE="1" />
        <INPUT TYPE="HIDDEN" NAME="f"     VALUE="S" />
        <INPUT TYPE="HIDDEN" NAME="l"     VALUE="50" />
        <INPUT TYPE="HIDDEN" NAME="d"     VALUE="PG01" />
  </form>
  
  <script><![CDATA[
    function patapp(q)
    {
      if( nullArgs("patapp", q) )
        return;

      document.appf.Query.value = q;
      submitForm(appf);
    }
  ]]></script>

  <copyright>
        Copyright (c) 2002 David Bau
        Mods copyright Philip Albert 2002
        copyright Gerald Gray 2002
        Distributed under the terms of the
        GNU Public License, Version 2 (http://www.gnu.org/copyleft/gpl.txt)
  </copyright>
</search>
--- NEW FILE: patno.xml ---
<search function="patno">

<COMMENT>Copied from sep.xml - I cannot figure out how to get DQSD to 
recognize an entirely new search function, so I cannibalized one that 
already existed and I didn't need.  Someday, figure out how to replace 
"sep" with "patno" and get this to work.  If I rename the search function 
"patno", it doesn't show up on the list, even after a refresh.  
Interestingly, I was able to create a new category (Legal) by just 
editing the category field here and DQSD picked it up.

The category and the help stuff all show up upon refresh, but not if I 
change the name of the function above.

OK, now it works - just be persistent.
</COMMENT>

  <name>Patent Number</name>
  <contributor>Philip Albert</contributor>
  <description>Retrieve a patent from U.S. PTO by number.<br/>
  <div class="helpboxDescLabels">Example:</div>
  <table class="helpboxDescTable">
    <tr><td>patno 6,123,456</td></tr>
    <tr><td>      6,123,456#</td></tr>
  </table>
  </description>
  <category>Legal</category>

  <link>http://164.195.100.11/netahtml/srchnum.htm</link>
  <form name="patnof" method="get" action="http://164.195.100.11/netacgi/nph-Parser";>
        <INPUT TYPE="HIDDEN" NAME="TERM1" VALUE="" />
        <INPUT TYPE="HIDDEN" NAME="Sect1" VALUE="PTO1" />
        <INPUT TYPE="HIDDEN" NAME="Sect2" VALUE="HITOFF" />
        <INPUT TYPE="HIDDEN" NAME="d"     VALUE="PALL" />
        <INPUT TYPE="HIDDEN" NAME="p"     VALUE="1" />
        <INPUT TYPE="HIDDEN" NAME="u"     VALUE="/netahtml/srchnum.htm" />
        <INPUT TYPE="HIDDEN" NAME="r"     VALUE="0" />
        <INPUT TYPE="HIDDEN" NAME="f"     VALUE="S" />
        <INPUT TYPE="HIDDEN" NAME="l"     VALUE="10" />
  </form>
  
  <script><![CDATA[
    function patno(q)
    {
      if( nullArgs("patno", q) )
        return;

      document.patnof.TERM1.value = q;
      submitForm(patnof);
    }
  ]]></script>

  <copyright>
        Copyright (c) 2002 David Bau
        Mods copyright Philip Albert 2002
        Distributed under the terms of the
        GNU Public License, Version 2 (http://www.gnu.org/copyleft/gpl.txt)
  </copyright>
</search>



-------------------------------------------------------
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
_______________________________________________
DQSD-CVS mailing list
https://lists.sourceforge.net/lists/listinfo/dqsd-cvs
DQSD CVS repository:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/

Reply via email to