Changeset 1123

Show
Ignore:
Timestamp:
08/06/05 12:25:41 (3 years ago)
Author:
paul
Message:

Removed reportDesigner.py and sampleReport.py (copied to daboide). Got
rid of the lib/reporting directory, and moved the location of reportWriter.py
into lib.

Changed the license in setup.py to MIT, which is the type of license Dabo
uses.

Submitted what I have so far for the ChangeLog?. Please edit it as you see
fit to do so, Ed.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r959 r1123  
    11See the Subversion log for all the details. 
     2 
     3Dabo-0.4 (2005-08-07) (Revision 1122): 
     4 
     5Cleaned up the initialization of properties. No more initStyleProperties(), 
     6user code just puts their props in initProperties() or sends them to the 
     7constructor in the properties arg or as separate named arguments. The 
     8framework sorts out when the properties need to be set in the object 
     9construction cycle. 
     10 
     11Lots of sizer improvement, such as... 
     12 
     13New dGrid, with dColumn and Header objects available for reference. 
     14 
     15Lots of convenience functions written, including... 
     16 
     17Simplified access to common dialogs. For instance, getFile(), getColor(),  
     18getBitmap(), getString() functions all show the dialog and return the 
     19result. So, to get a font, just call dabo.ui.getFont(). Similarly,  
     20to show a common messagebox and get the response, just use dabo.ui.info(), 
     21dabo.ui.stop(), or dabo.ui.areYouSure().  
     22 
     23doDefault() much faster now (thanks to Alex Martelli) 
     24 
     25Support for decimal.Decimal. 
     26 
     27New classes: dColorDialog, dToolBar. 
     28 
     29Work on the report writer and report designer progresses.  
     30 
     31We finally have distutils support. To install Dabo, do the standard 
     32"python setup.py install". Thanks to limodou for submitting the patch. 
    233 
    334 
  • trunk/dabo/dReportWriter.py

    r1120 r1123  
    1 from dabo.lib.reporting.reportWriter import ReportWriter 
     1from dabo.lib.reportWriter import ReportWriter 
    22from dabo.common.dObject import dObject 
    33 
  • trunk/setup.py

    r1121 r1123  
    1414    author_email = 'dev@dabodev.com', 
    1515    description = 'Dabo 3-tier Application Framework', 
    16     license = 'BSD-Like', 
     16    license = 'MIT', 
    1717    packages = find_packages(), 
    1818    package_data = {