Changes between Initial Version and Version 1 of DeveloperGuidelines/Tips


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

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Tips

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