Changes between Version 3 and Version 4 of DeveloperGuidelinesAdvanced


Ignore:
Timestamp:
12/20/08 19:49:01 (16 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelinesAdvanced

    v3 v4  
    1 DeveloperGuidelines
    2 
    3 Python debugging
    4  * use Web2Py shell: http://www.vimeo.com/879939
    5  * http://docs.python.org/library/doctest.html
    6  * http://docs.python.org/library/bdb.html
    7 
    8 CSS & Javascript debugging
    9  * use Firebug: http://code.google.com/support/bin/answer.py?answer=77412&topic=12044
    10  * http://pastebin.me (allows edits of HTML & previews)
    11 
    12 Web2Py
    13  * Arbitrary HTML tags using TAG, e.g. TAG.LEGEND('a','b',_c='d')
    14  * Edit multiple records at once: http://groups.google.com/group/web2py/browse_thread/thread/401b4c192871194c/a96cc8c7923a8565#
    15  * THIS_NOT_IN_DB custom validator: http://groups.google.com/group/web2py/browse_thread/thread/27b14433976c0540?pli=1
    16  * Custom Forms: http://www.wellbehavedsystems.co.uk/web2py/examples/
    17  * Auto-complete (for when Dropdowns get too long):
    18   * http://groups.google.com/group/web2py/browse_thread/thread/e1034df0091b5bfd#
    19   * http://groups.google.com/group/web2py/browse_thread/thread/f6e0170273b14241
    20   * http://plugins.jquery.com/project/autocompletex
    21   * http://plugins.jquery.com/project/YA_AutoComplete
    22 
    23 jQuery:
    24  * http://www.tvidesign.co.uk/blog/improve-your-jquery-25-excellent-tips.aspx
    25 
    26 Ext:
    27  * http://extjs.com/learn/Tutorial:Introduction_to_Ext_2.0
    28  * http://extjs.com/learn/Manual:Basic_Application_Design
    29  * http://extjs.com/forum/showthread.php?t=26728
    30  * http://extjs.com/learn/Ext_FAQ_Debugging
    31 
    32 Bugmail add-on for Thunderbird:
    33  * https://addons.mozilla.org/en-US/thunderbird/addon/9584
    34 
    35 Especially useful for USB (minimise disk access)
    36  * http://web.utk.edu/~jplyon/sqlite/SQLite_optimization_FAQ.html
    37 
    38 SQL design:
    39  * http://www.sqlteam.com/article/database-design-and-modeling-fundamentals
    40  * http://www.tomjewett.com/dbdesign/dbdesign.php?page=intro.html
    41  * http://www.w3schools.com/Sql/sql_join.asp
    42  * http://www.plus2net.com/sql_tutorial/sql_linking_table.php
    43 
    44 
    45 DeveloperGuidelines