Changes between Version 40 and Version 41 of DeveloperGuidelines/Tips


Ignore:
Timestamp:
04/23/09 07:19:24 (16 years ago)
Author:
Fran Boon
Comment:

w2p docs

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Tips

    v40 v41  
    1515
    1616==== Web2Py ====
     17 * http://web2py.com/examples/default/docs
     18 * HTML Helpers: http://www.web2py.com/AlterEgo/default/show/217
     19 * Arbitrary HTML tags using TAG, e.g. TAG.LEGEND('a','b',_c='d')
     20 * HTML Helpers can be navigated/manipulated like the DOM: http://groups.google.com/group/web2py/browse_thread/thread/ac045f3b1d3846d9
    1721 * https://mdp.cti.depaul.edu/web2py_wiki/default/wiki/tips
    1822 * https://mdp.cti.depaul.edu/web2py_wiki/default/wiki/widgets
    19  * Arbitrary HTML tags using TAG, e.g. TAG.LEGEND('a','b',_c='d')
    20  * Prevent multiple concurrent logins: http://groups.google.com/group/web2py/browse_thread/thread/4e1c62a0d9255160
    2123 * New syntax for low-level database record create/update/delete: http://groups.google.com/group/web2py/browse_thread/thread/d79a6e52824d4221
    2224 * Default field values with crud.create(): http://groups.google.com/group/web2py/browse_thread/thread/717e2349f0f8e93d
    2325 * Edit multiple records at once: http://groups.google.com/group/web2py/browse_thread/thread/401b4c192871194c/a96cc8c7923a8565#
     26 * Prevent multiple concurrent logins: http://groups.google.com/group/web2py/browse_thread/thread/4e1c62a0d9255160
    2427 * THIS_NOT_IN_DB custom validator: http://groups.google.com/group/web2py/browse_thread/thread/27b14433976c0540?pli=1
    25  * CGI co-existence: http://groups.google.com/group/web2py/browse_thread/thread/1520b84d144f0b0c
    26  * Custom Forms - less retyping of code in view using SQLFORM extensions: http://groups.google.com/group/web2py/browse_thread/thread/2d8cc57352d158bd
    27  * Custom Forms - alternate approach: http://www.wellbehavedsystems.co.uk/web2py/examples/
    28  * Custom Form Helper field2html(): http://groups.google.com/group/web2py/browse_thread/thread/1012c11c977aa05e
    29  * Custom Forms - multiple per page: http://groups.google.com/group/web2py/browse_thread/thread/57e452d186d48fa4
    30  * Custom Forms - values retrieved from DB are stored for re-referencing:  http://mdp.cti.depaul.edu/AlterEgo/default/show/205
    31  * Custom Forms - summary of MVC options: http://groups.google.com/group/web2py/browse_thread/thread/7da38e0d32d01076
    32  * HTML Helpers can be navigated/manipulated like the DOM: http://groups.google.com/group/web2py/browse_thread/thread/ac045f3b1d3846d9
     28 * Custom Forms - less retyping of code in view using SQLFORM extensions:
     29  * http://groups.google.com/group/web2py/browse_thread/thread/2d8cc57352d158bd
     30  * Alternate approach: http://www.wellbehavedsystems.co.uk/web2py/examples/
     31  * Helper field2html(): http://groups.google.com/group/web2py/browse_thread/thread/1012c11c977aa05e
     32  * Multiple per page: http://groups.google.com/group/web2py/browse_thread/thread/57e452d186d48fa4
     33  * Values retrieved from DB are stored for re-referencing:  http://mdp.cti.depaul.edu/AlterEgo/default/show/205
     34  * Summary of MVC options: http://groups.google.com/group/web2py/browse_thread/thread/7da38e0d32d01076
    3335 * Lambda tricks: http://p-nand-q.com/python/stupid_lambda_tricks.html
    3436 * IS_IN_DB (...,order_by=...): http://groups.google.com/group/web2py/browse_thread/thread/5fe6e343d115590d/2a8c38fccb2cf3cf#2a8c38fccb2cf3cf
     37 * CGI co-existence: http://groups.google.com/group/web2py/browse_thread/thread/1520b84d144f0b0c
    3538 * Inline Images in T2 CRUD: http://groups.google.com/group/web2py/browse_thread/thread/d954bf883baf7adc/3b55a819b425a741
    3639 * Download Images with original filename: