Changeset 805

Show
Ignore:
Timestamp:
04/27/06 19:10:59 (2 years ago)
Author:
bob@redivi.com
Message:

ugly key events slide

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • presentations/2006/ajax_experience/slides.html

    r751 r805  
    433433<li><a class="reference" href="#custom-event-object" id="id74" name="id74">Custom Event Object</a></li> 
    434434<li><a class="reference" href="#mouse-events" id="id75" name="id75">Mouse Events</a></li> 
    435 <li><a class="reference" href="#signal-anything" id="id76" name="id76">Signal Anything</a></li> 
    436 <li><a class="reference" href="#mochikit-on-the-web" id="id77" name="id77">MochiKit on the Web</a></li> 
     435<li><a class="reference" href="#keyboard-events" id="id76" name="id76">Keyboard Events</a></li> 
     436<li><a class="reference" href="#signal-anything" id="id77" name="id77">Signal Anything</a></li> 
    437437<li><a class="reference" href="#mochikit-support" id="id78" name="id78">MochiKit Support</a></li> 
     438<li><a class="reference" href="#mochikit-on-the-web" id="id79" name="id79">MochiKit on the Web</a></li> 
    438439</ul> 
    439440</div> 
     
    12721273</div> 
    12731274</div> 
     1275<div class="slide" id="keyboard-events"> 
     1276<h1>Keyboard Events</h1> 
     1277    <script type="text/javascript" src="ui/mochikit/examples/key_events.js"></script> 
     1278    <table> 
     1279        <tr> 
     1280            <th>Event</th> 
     1281            <th>Key Code</th> 
     1282            <th>Key String</th> 
     1283        </tr> 
     1284        <tr> 
     1285            <td>onkeydown</td> 
     1286            <td id="onkeydown_code">-</td> 
     1287            <td id="onkeydown_string">-</td> 
     1288        </tr> 
     1289        <tr> 
     1290            <td>onkeyup</td> 
     1291            <td id="onkeyup_code">-</td> 
     1292            <td id="onkeyup_string">-</td> 
     1293        </tr> 
     1294        <tr> 
     1295            <td>onkeypress</td> 
     1296            <td id="onkeypress_code">-</td> 
     1297            <td id="onkeypress_string">-</td> 
     1298        </tr> 
     1299    </table> 
     1300     
     1301    <h3>Modifiers</h3> 
     1302    <table> 
     1303        <tr> 
     1304            <th>Shift</th> 
     1305            <th>Ctrl</th> 
     1306            <th>Alt (Option)</th> 
     1307            <th>Meta (Command)</th> 
     1308        </tr> 
     1309        <tr> 
     1310            <td id="shift">-</td> 
     1311            <td id="ctrl">-</td> 
     1312            <td id="alt">-</td> 
     1313            <td id="meta">-</td> 
     1314        </tr> 
     1315    </table>     
     1316</div> 
    12741317<div class="slide" id="signal-anything"> 
    12751318<h1>Signal Anything</h1> 
     
    12781321<li>connect() and disconnect() are the same</li> 
    12791322<li>signal(src, signal, args...) to fire the event</li> 
     1323</ul> 
     1324</div> 
     1325<div class="slide" id="mochikit-support"> 
     1326<h1>MochiKit Support</h1> 
     1327<ul class="simple"> 
     1328<li>Check the documentation</li> 
     1329<li>Ask on the mailing list</li> 
     1330<li>Check the wiki/bug tracker</li> 
     1331<li>#mochikit on irc.freenode.net</li> 
    12801332</ul> 
    12811333</div> 
     
    12911343</dl> 
    12921344</div> 
    1293 <div class="slide" id="mochikit-support"> 
    1294 <h1>MochiKit Support</h1> 
    1295 <ul class="simple"> 
    1296 <li>Check the documentation</li> 
    1297 <li>Ask on the mailing list</li> 
    1298 <li>Check the wiki/bug tracker</li> 
    1299 <li>#mochikit on irc.freenode.net</li> 
    1300 </ul> 
    1301 </div> 
    13021345</div> 
    13031346</body> 
  • presentations/2006/ajax_experience/slides.txt

    r751 r805  
    886886 
    887887 
     888Keyboard Events 
     889=============== 
     890 
     891.. raw:: html 
     892    :file: includes/key_events.html 
     893 
     894 
    888895Signal Anything 
    889896=============== 
     
    892899* connect() and disconnect() are the same 
    893900* signal(src, signal, args...) to fire the event 
    894  
    895  
    896 MochiKit on the Web 
    897 =================== 
    898  
    899 Home page: 
    900     http://mochikit.com/ 
    901  
    902 Bug tracker/Wiki: 
    903     http://trac.mochikit.com/ 
    904  
    905 Subversion repository: 
    906     http://svn.mochikit.com/ 
    907901 
    908902 
     
    914908- Check the wiki/bug tracker 
    915909- #mochikit on irc.freenode.net 
     910 
     911 
     912MochiKit on the Web 
     913=================== 
     914 
     915Home page: 
     916    http://mochikit.com/ 
     917 
     918Bug tracker/Wiki: 
     919    http://trac.mochikit.com/ 
     920 
     921Subversion repository: 
     922    http://svn.mochikit.com/ 
  • presentations/2006/ajax_experience/ui/mochikit/mochikit.css

    r751 r805  
    3030    font-family: Trebuchet MS,verdana,sans-serif; 
    3131} 
     32 
     33#controls #navLinks a { background: transparent; } 
     34#controls #navList #jumplist { background: transparent; }