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

Update of /cvsroot/dqsd/dqsdweb
In directory usw-pr-cvs1:/tmp/cvs-serv24160

Modified Files:
        faq.css faq.xml faq.xsl 
Log Message:
Add <keybindings>

Index: faq.css
===================================================================
RCS file: /cvsroot/dqsd/dqsdweb/faq.css,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** faq.css     15 Aug 2002 19:38:21 -0000      1.5
--- faq.css     16 Aug 2002 22:38:03 -0000      1.6
***************
*** 9,21 ****
  }
  
! TABLE.keybindings TD {
        vertical-align: top;
        font-size: 70%;
  }
! TD.keyname {
        white-space: nowrap;
        font-weight: bold;
        padding-right: 1em;
        text-align: right;
  }
  
--- 9,25 ----
  }
  
! TABLE.keybindings TD, TABLE.keybindings TH {
        vertical-align: top;
        font-size: 70%;
  }
! TH.keyname, TD.keyname {
        white-space: nowrap;
        font-weight: bold;
        padding-right: 1em;
        text-align: right;
+ }
+ TABLE.keybindings TH {
+       font-weight: normal;
+       font-style: italic;
  }
  

Index: faq.xml
===================================================================
RCS file: /cvsroot/dqsd/dqsdweb/faq.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** faq.xml     16 Aug 2002 13:28:20 -0000      1.8
--- faq.xml     16 Aug 2002 22:38:03 -0000      1.9
***************
*** 2,8 ****
  <?xml-stylesheet type="text/xsl" href="faq.xsl"?>
  <faq_document xmlns:html="http://www.w3.org/1999/xhtml";>
- 
    <doc_title>Dave's Quick Search Deskbar FAQ</doc_title>
- 
    <faqs>
      <category name="General">
--- 2,6 ----
***************
*** 31,80 ****
          <question>What are the key bindings used by DQSD?</question>
          <answer>
!           <html:table class="keybindings">
!             <html:tr>
!               <html:td class="keyname">Ctrl-Enter</html:td>
!               <html:td>Adds www. prefix and/or .com suffix to string if necessary 
and launches URL. Like IE key-binding (only better since the prefix/suffix are only 
add if needed).</html:td>
!             </html:tr>
!             <html:tr>
!               <html:td class="keyname">Shift-Enter</html:td>
!               <html:td>Always opens a new window for the search regardless of the 
reuseWindowMode setting. This works only when IE is the default browser.
!               </html:td>
!             </html:tr>
!             <html:tr>
!               <html:td class="keyname">Ctrl-B / F8</html:td>
!               <html:td>Search the search history for the current text. (user 
configurable in localprefs.js)
!               </html:td>
!             </html:tr>
!             <html:tr>
!               <html:td class="keyname">Shift-Ctrl-B / Shift-F8</html:td>
!               <html:td>Search forward through the history for the current text. 
(user configurable in localprefs.js)
!               </html:td>
!             </html:tr>
!             <html:tr>
!               <html:td class="keyname">Win-S</html:td>
!               <html:td>Make the search bar active (i.e., make it have the current 
focus). (user configurable in localprefs.js)
!               </html:td>
!             </html:tr>
!             <html:tr>
!               <html:td class="keyname">F1</html:td>
!               <html:td>Display menu.
!               </html:td>
!             </html:tr>
!             <html:tr>
!               <html:td class="keyname">Ctrl-P / Up</html:td>
!               <html:td>Display previous search in history.
!               </html:td>
!             </html:tr>
!             <html:tr>
!               <html:td class="keyname">Ctrl-N / Down</html:td>
!               <html:td>Display next search in history.
!               </html:td>
!             </html:tr>
!           </html:table>
          </answer>
        </faq>
      </category>
- 
-     
      <category name="Installation">
        <faq>
--- 29,45 ----
          <question>What are the key bindings used by DQSD?</question>
          <answer>
!           <key_bindings>
!             <key name="Ctrl-Enter">Adds www. prefix and/or .com suffix to string if 
necessary and launches URL. Like IE key-binding (only better since the prefix/suffix 
are only add if needed).</key>
!             <key name="Shift-Enter">Always opens a new window for the search 
regardless of the reuseWindowMode setting. This works only when IE is the default 
browser.</key>
!             <key name="Ctrl-B, F8">Search the search history for the current text. 
(user configurable in localprefs.js)</key>
!             <key name="Shift-Ctrl-B, Shift-F8">>Search forward through the history 
for the current text. (user configurable in localprefs.js)</key>
!             <key name="Win-S">Make the search bar active (i.e., make it have the 
current focus). (user configurable in localprefs.js)</key>
!             <key name="F1">Display menu.</key>
!             <key name="Ctrl-P, Up">Display previous search in history.</key>
!             <key name="Ctrl-N, Down">Display next search in history.</key>
!           </key_bindings>
          </answer>
        </faq>
      </category>
      <category name="Installation">
        <faq>
***************
*** 87,92 ****
        </faq>
      </category>
- 
-     
      <category name="Searches">
        <faq>
--- 52,55 ----
***************
*** 99,105 ****
            Searches are defined by XML files in the 'searches' 
            subdirectory.&#160; You need to be comfortable hacking on HTML forms and a 
bit 
!           of JavaScript to add a search site to the search 
bar.<html:br/><html:br/>If you are, here's 
            what you do:<html:br/>
- 
            <html:ol>
              <html:li>Take a look at the original HTML form for the search, and 
create your own 
--- 62,68 ----
            Searches are defined by XML files in the 'searches' 
            subdirectory.&#160; You need to be comfortable hacking on HTML forms and a 
bit 
!           of JavaScript to add a search to the search bar.<html:br/>
!           <html:br/>If you are, here's 
            what you do:<html:br/>
            <html:ol>
              <html:li>Take a look at the original HTML form for the search, and 
create your own 
***************
*** 145,149 ****
              </html:li>
            </html:ol>
- 
            <html:p>Here is some information about the XML:</html:p>
            <html:ul>
--- 108,111 ----
***************
*** 184,189 ****
        </faq>
      </category>
-     
-     
      <category name="Aliases">
        <faq>
--- 146,149 ----
***************
*** 204,208 ****
                  overwritten by later installations.<html:br/> Please also note that 
a local alias
                  overrides an alias if they have the same name.</answer>
!       </faq>        
        <faq>
          <question>I want to create an alias to an alias.  How should I do 
this?</question>
--- 164,168 ----
                  overwritten by later installations.<html:br/> Please also note that 
a local alias
                  overrides an alias if they have the same name.</answer>
!       </faq>
        <faq>
          <question>I want to create an alias to an alias.  How should I do 
this?</question>
***************
*** 218,224 ****
            <html:p>But these two lines will only show the dqsdcvs one:</html:p>
            <html:ul>
!           <html:li>dqsd|dqsdcvs
            </html:li>
!           <html:li>dqsdcvs|http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/dqsd/
            </html:li>
            </html:ul>
--- 178,184 ----
            <html:p>But these two lines will only show the dqsdcvs one:</html:p>
            <html:ul>
!             <html:li>dqsd|dqsdcvs
            </html:li>
!             
<html:li>dqsdcvs|http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/dqsd/
            </html:li>
            </html:ul>
***************
*** 228,233 ****
        </faq>
      </category>
-     
-     
      <category name="Preferences">
        <faq>
--- 188,191 ----
***************
*** 256,261 ****
        </faq>
      </category>
-     
-     
      <category name="Styles">
        <faq>
--- 214,217 ----
***************
*** 277,282 ****
        </faq>
      </category>
-     
-     
      <category name="Coding">
        <faq>
--- 233,236 ----
***************
*** 304,331 ****
              <html:li>In the code, please mimic the prevailing convention for tabbing 
and spacing:
              </html:li>
!               <html:ol>
!                 <html:li>No tab characters in code please. Use spaces instead. (The 
exception is where
                           tabs have semantics of course). Code should be indented two 
spaces per level.
                  </html:li>
!                 <html:li>Please, no space characters after a ( or before a ).
                  </html:li>
!                 <html:li>Curlies for a {multiline block} should be on their own line 
and unindented
                           (just their contents are indented).
                  </html:li>
!               </html:ol>
              <html:li>Also please mimic the prevailing convention for packaging:
              </html:li>
!               <html:ol>
!                 <html:li>Sources should be included in the distribution itself since 
this is the easiest
                           way to conform to the GPL. So all source files should be 
listed in
                           "search.nsi"; i.e., you shouldn't need CVS to get a working 
build.
                  </html:li>
!                 <html:li>Please keep "build.cmd" working. In particular this means 
that DQSDTools.mak
                           needs to be kept up to date. Also, any files that are 
automatically generated
                           by the build should be deleted by "clean.cmd".
                  </html:li>
!                 <html:li>Keep new sources, except for those that are being used at 
runtime, underneath src/.
                  </html:li>
!               </html:ol>
              <html:li>Keep in mind that you are editing other people's code and that 
other people
                       will edit your stuff. Please don't be offended if your code is 
changed or even
--- 258,285 ----
              <html:li>In the code, please mimic the prevailing convention for tabbing 
and spacing:
              </html:li>
!             <html:ol>
!               <html:li>No tab characters in code please. Use spaces instead. (The 
exception is where
                           tabs have semantics of course). Code should be indented two 
spaces per level.
                  </html:li>
!               <html:li>Please, no space characters after a ( or before a ).
                  </html:li>
!               <html:li>Curlies for a {multiline block} should be on their own line 
and unindented
                           (just their contents are indented).
                  </html:li>
!             </html:ol>
              <html:li>Also please mimic the prevailing convention for packaging:
              </html:li>
!             <html:ol>
!               <html:li>Sources should be included in the distribution itself since 
this is the easiest
                           way to conform to the GPL. So all source files should be 
listed in
                           "search.nsi"; i.e., you shouldn't need CVS to get a working 
build.
                  </html:li>
!               <html:li>Please keep "build.cmd" working. In particular this means 
that DQSDTools.mak
                           needs to be kept up to date. Also, any files that are 
automatically generated
                           by the build should be deleted by "clean.cmd".
                  </html:li>
!               <html:li>Keep new sources, except for those that are being used at 
runtime, underneath src/.
                  </html:li>
!             </html:ol>
              <html:li>Keep in mind that you are editing other people's code and that 
other people
                       will edit your stuff. Please don't be offended if your code is 
changed or even
***************
*** 335,339 ****
                       you don't make checkins for a while.
              </html:li>
!           </html:ul></answer>
        </faq>
        <faq>
--- 289,294 ----
                       you don't make checkins for a while.
              </html:li>
!           </html:ul>
!         </answer>
        </faq>
        <faq>
***************
*** 358,385 ****
              <html:li>From your cygwin prompt, type the following to checkout:
              </html:li>
!               <html:ul>
!                 <html:li>cd ~
                  </html:li>
!                 <html:li>cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/dqsd login
                  </html:li>
!                 <html:li>cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/dqsd co dqsd
                  </html:li>
!               </html:ul>
              <html:li>And whenever you want to get the latest:
              </html:li>
!               <html:ul>
!                 <html:li>cd ~/dqsd
                  </html:li>
!                 <html:li>cvs update -dP
                  </html:li>
!               </html:ul>
              <html:li>Type the following to build:
              </html:li>
!               <html:ul>
!                 <html:li>cd ~/dqsd
                  </html:li>
!                 <html:li>src/build.cmd
                  </html:li>
!               </html:ul>
              <html:li>In the end, you should get a dqsd/dqsd.exe.
              </html:li>
--- 313,340 ----
              <html:li>From your cygwin prompt, type the following to checkout:
              </html:li>
!             <html:ul>
!               <html:li>cd ~
                  </html:li>
!               <html:li>cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/dqsd login
                  </html:li>
!               <html:li>cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/dqsd co dqsd
                  </html:li>
!             </html:ul>
              <html:li>And whenever you want to get the latest:
              </html:li>
!             <html:ul>
!               <html:li>cd ~/dqsd
                  </html:li>
!               <html:li>cvs update -dP
                  </html:li>
!             </html:ul>
              <html:li>Type the following to build:
              </html:li>
!             <html:ul>
!               <html:li>cd ~/dqsd
                  </html:li>
!               <html:li>src/build.cmd
                  </html:li>
!             </html:ul>
              <html:li>In the end, you should get a dqsd/dqsd.exe.
              </html:li>
***************
*** 389,393 ****
            The above is for read-only access to the sources. For writable access, 
you'll
            need a Source Forge account, and Dave or Glenn will have to grant proper
!           permissions to your account.<html:br/> <html:br/>
            Alternate CVS Utilities:
            <html:ul>
--- 344,349 ----
            The above is for read-only access to the sources. For writable access, 
you'll
            need a Source Forge account, and Dave or Glenn will have to grant proper
!           permissions to your account.<html:br/>
!           <html:br/>
            Alternate CVS Utilities:
            <html:ul>
***************
*** 399,407 ****
                       from an Explorer window. Get it here: <link 
href="http://www.tortoisecvs.org/";>http://www.tortoisecvs.org/</link>.
              </html:li>
!           </html:ul></answer>
        </faq>
      </category>
- 
-     
      <category name="Add-ons">
        <faq>
--- 355,362 ----
                       from an Explorer window. Get it here: <link 
href="http://www.tortoisecvs.org/";>http://www.tortoisecvs.org/</link>.
              </html:li>
!           </html:ul>
!         </answer>
        </faq>
      </category>
      <category name="Add-ons">
        <faq>
***************
*** 424,430 ****
                  examples (googlespell, etc), and use them as a template for your 
own.</answer>
        </faq>
- 
      </category>
    </faqs>
  </faq_document>
- 
--- 379,383 ----

Index: faq.xsl
===================================================================
RCS file: /cvsroot/dqsd/dqsdweb/faq.xsl,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** faq.xsl     15 Aug 2002 19:38:21 -0000      1.7
--- faq.xsl     16 Aug 2002 22:38:05 -0000      1.8
***************
*** 73,76 ****
--- 73,91 ----
    </xsl:template>
    
+   <xsl:template match="key_bindings">
+         <table class="keybindings">
+                       <tbody>
+                               <tr>
+                                       <th 
+class="keyname">Key</th><th>Description</th>
+                               </tr>
+                               <xsl:apply-templates select="key" />
+                       </tbody>
+               </table>
+   </xsl:template>
+   
+   <xsl:template match="key">
+     <tr><td class="keyname"><xsl:value-of select="@name"/></td><td><xsl:value-of 
+select="."/></td></tr>
+   </xsl:template>
+   
    <xsl:template match="html:*">
      <xsl:element name="{local-name()}">
***************
*** 85,89 ****
  
    <xsl:template match="/faq_document/faqs">
- 
        <xsl:for-each select="category">
          <div class="category">
--- 100,103 ----




-------------------------------------------------------
This sf.net email is sponsored by: OSDN - Tired of that same old
cell phone?  Get a new here for FREE!
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
_______________________________________________
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