From 94e8fe382af84ea104dee55938fd4f52d898494a Mon Sep 17 00:00:00 2001 From: Terrence Brannon Date: Mon, 16 Mar 2015 13:24:01 -0700 Subject: [PATCH 1/2] correct location of AppWizard.py --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b52490fb4..b2702d360 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Dabo: A Framework for developing data-driven business applications Dabo is for developing multi-platform database business applications - you know, applications that need to connect to a database like MySQL, Oracle, MS-SQL, PostgreSQL, or SQLite, get recordsets of data based on criteria set by the user, provide easy ways to edit and commit changes to the data, and to report on the data. -You program in Python, subclassing Dabo's base classes. In addition, there are several graphical tools for laying out your GUI, editing your menus, and creating professional business reports. +You program in Python, subclassing Dabo's base classes. In addition, there are several graphical tools for laying out your GUI, editing your menus, and creating professional business reports. Dabo has three main subpackages, representing the three tiers common in modern database application design: ``` @@ -27,7 +27,7 @@ To run Dabo, and apps based on Dabo, you need: * Macintosh OSX 10.5 or higher * Linux 2.6 or higher with X11 running and Gtk2 -How you get started is pretty much up to you. Run DaboDemo.py which is in demo/DaboDemo. Run AppWizard.py which is in ide/wizards. Run ClassDesigner.py or ReportDesigner.py in the ide directory. +How you get started is pretty much up to you. Run DaboDemo.py which is in demo/DaboDemo. Run AppWizard.py which is in ide/wizards/AppWizard. Run ClassDesigner.py or ReportDesigner.py in the ide directory. For some quick results for the impatient, once you've installed Dabo using the standard ```python setup.py install``` method, do this from your Python interpreter: From bfc97d4c13393c0769aaed13e4c1aaca5746eab7 Mon Sep 17 00:00:00 2001 From: Terrence Brannon Date: Mon, 16 Mar 2015 13:25:40 -0700 Subject: [PATCH 2/2] put installation instructions before sample run instructions --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b2702d360..4298e4aa7 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,11 @@ To run Dabo, and apps based on Dabo, you need: * Macintosh OSX 10.5 or higher * Linux 2.6 or higher with X11 running and Gtk2 -How you get started is pretty much up to you. Run DaboDemo.py which is in demo/DaboDemo. Run AppWizard.py which is in ide/wizards/AppWizard. Run ClassDesigner.py or ReportDesigner.py in the ide directory. +Your first step is to install Dabo by using the standard ```python setup.py install``` method. -For some quick results for the impatient, once you've installed Dabo using the standard ```python setup.py install``` method, do this from your Python interpreter: +From there how you get started is pretty much up to you. Run DaboDemo.py which is in demo/DaboDemo. Run AppWizard.py which is in ide/wizards/AppWizard. Run ClassDesigner.py or ReportDesigner.py in the ide directory. + +Or, do this from your Python interpreter: ```python from dabo.dApp import dApp