Branch: refs/tags/latest
Home: https://github.com/dabodev/dabo
Commit: 4dcbeb62ae9b6f5d4e64e2ca6f056ff343523a43
https://github.com/dabodev/dabo/commit/4dcbeb62ae9b6f5d4e64e2ca6f056ff343523a43
Author: Paul McNett <[email protected]>
Date: 2013-01-05 (Sat, 05 Jan 2013)
Changed paths:
M dabo/biz/dBizobj.py
M dabo/ui/uiwx/dGrid.py
Log Message:
-----------
Set implicit dColumn.Precision if bizobj-based.
Since the decimal precision is already known in the bizobj, use that
for dColumn.Precision if the caller didn't explicitly set it.
Commit: 7c57619276c8b6f1b01f1b195c14b92e2bffcb99
https://github.com/dabodev/dabo/commit/7c57619276c8b6f1b01f1b195c14b92e2bffcb99
Author: Paul McNett <[email protected]>
Date: 2013-01-05 (Sat, 05 Jan 2013)
Changed paths:
R __init__.py b/daboserver/lib/__init__.py
R daboserver/README
R daboserver/__init__.py
R daboserver/appSource/people/biz/Activities.py
R daboserver/appSource/people/biz/People.py
R daboserver/appSource/people/biz/__init__.py
R daboserver/appSource/people/db/__init__.py
R daboserver/appSource/people/db/default.cnxml
R daboserver/appSource/people/main.py
R daboserver/appSource/people/reports/__init__.py
R daboserver/appSource/people/resources/__init__.py
R daboserver/appSource/people/test/__init__.py
R daboserver/appSource/people/ui/__init__.py
R daboserver/appSource/people/ui/people-code.py
R daboserver/appSource/people/ui/people.cdxml
R daboserver/config/__init__.py
R daboserver/config/deployment.ini_tmpl
R daboserver/config/environment.py
R daboserver/config/middleware.py
R daboserver/config/routing.py
R daboserver/controllers/ActivitiesBizobj.py
R daboserver/controllers/PeopleBizobj.py
R daboserver/controllers/README.txt
R daboserver/controllers/__init__.py
R daboserver/controllers/bizservers.py
R daboserver/controllers/error.py
R daboserver/controllers/webupdate.py
R daboserver/lib/app_globals.py
R daboserver/lib/base.py
R daboserver/lib/helpers.py
R daboserver/model/__init__.py
R daboserver/public/bg.png
R daboserver/public/index.html
R daboserver/public/pylons-logo.gif
R daboserver/tests/__init__.py
R daboserver/tests/functional/__init__.py
R daboserver/tests/functional/test_bizobj.py
R daboserver/tests/functional/test_bizservers.py
R daboserver/tests/functional/test_webupdate.py
R daboserver/tests/test_models.py
R daboserver/websetup.py
R springboard/biz/__init__.py
R springboard/buildwin.bat
R springboard/db/__init__.py
R springboard/main.py
R springboard/reports/__init__.py
R springboard/resources/__init__.py
R springboard/setup.py
R springboard/setup.py.win
R springboard/springboard.icns
R springboard/test/__init__.py
R springboard/ui/__init__.py
R springboard/ui/springboard-code.py
R springboard/ui/springboard.cdxml
Log Message:
-----------
Removed sub-projects now in their own repositories.
Commit: c6e14fb4d34673f3dc4df2f060105fbfaa6481f4
https://github.com/dabodev/dabo/commit/c6e14fb4d34673f3dc4df2f060105fbfaa6481f4
Author: Paul McNett <[email protected]>
Date: 2013-01-05 (Sat, 05 Jan 2013)
Changed paths:
A .gitignore
Log Message:
-----------
Added .gitignore
Commit: 057a4d3592706bf7e23408463f8f9188ecac4b8d
https://github.com/dabodev/dabo/commit/057a4d3592706bf7e23408463f8f9188ecac4b8d
Author: Paul McNett <[email protected]>
Date: 2013-01-05 (Sat, 05 Jan 2013)
Changed paths:
M dabo/dObject.py
R dabo/lib/autosuper/LICENSE.TXT
R dabo/lib/autosuper/__init__.py
R dabo/lib/autosuper/_autosuper.pyx
R dabo/lib/autosuper/autosuper.py
R dabo/lib/autosuper/setup.py
R dabo/lib/autosuper/test/autosuper.py
R dabo/lib/autosuper/test/autosuper_unittest.py
R dabo/lib/doDefaultMixin.py
Log Message:
-----------
Removed self.super() and self.doDefault().
Starting with Python 7's 64-bit version, calling self.super()
would sometimes result in a Segmentation Fault. It is better
for appdev's to get an AttributeError for their self.super()
calls to change them to the proper super(cls, self).method()
Commit: 129e9a9c5c368b3b67bad0eddf9e80db52381d0b
https://github.com/dabodev/dabo/commit/129e9a9c5c368b3b67bad0eddf9e80db52381d0b
Author: Paul McNett <[email protected]>
Date: 2013-01-07 (Mon, 07 Jan 2013)
Changed paths:
M dabo/lib/datanav/Form.py
Log Message:
-----------
Removed biz.Caption from the EditPage.Caption.
This is redundant since the form already has the caption, and looks better
because 1) it takes less horizontal space and 2) the biz.Caption is likely
plural, but in this context it should be singular. I didn't want to just
strip out a trailing "s" due to that being a locale-specific solution.
Commit: 730176f1da882e6a652dae8aa812842d03a64ff8
https://github.com/dabodev/dabo/commit/730176f1da882e6a652dae8aa812842d03a64ff8
Author: Paul McNett <[email protected]>
Date: 2013-01-07 (Mon, 07 Jan 2013)
Changed paths:
M dabo/ui/uiwx/dImage.py
Log Message:
-----------
Fixed for wxPython 2.9.4.0 on Mac.
I was getting this:
Traceback (most recent call last):
File "/users/pmcnett/dabo/dabo/ui/uiwx/dPemMixin.py", line 733, in
__onWxResize
self.raiseEvent(dEvents.Resize, evt)
File "/users/pmcnett/dabo/dabo/ui/uiwx/dPemMixin.py", line 1074, in raiseEvent
super(dPemMixin, self).raiseEvent(eventClass, nativeEvent, *args, **kwargs)
File "/users/pmcnett/dabo/dabo/lib/eventMixin.py", line 81, in raiseEvent
bindingFunction(event)
File "/users/pmcnett/dabo/dabo/ui/uiwx/dImage.py", line 89, in _onResize
self._showPic()
File "/users/pmcnett/dabo/dabo/ui/uiwx/dImage.py", line 221, in _showPic
img = img.Scale(imgW, imgH)
File
"/usr/local/lib/wxPython-2.9.4.0/lib/python2.7/site-packages/wx-2.9.4-osx_cocoa/wx/_core.py",
line 2916, in Scale
return _core_.Image_Scale(*args, **kwargs)
wx._core.PyAssertionError: C++ assertion "(width > 0) && (height > 0)" failed
at /BUILD/wxPython-src-2.9.4.0/src/common/image.cpp(434) in Scale(): invalid
new image size
self.Width and self.Height were 0,0 but the original test for an uninitialized
image was for w,h or 1,1.
Commit: 69ebd1ae7076dc6fc24b3ad95f97d4477dd2c3a0
https://github.com/dabodev/dabo/commit/69ebd1ae7076dc6fc24b3ad95f97d4477dd2c3a0
Author: Paul McNett <[email protected]>
Date: 2013-01-07 (Mon, 07 Jan 2013)
Changed paths:
M dabo/ui/uiwx/uiApp.py
Log Message:
-----------
Fix DeprecationWarning on wxPython 2.9
wx.InitAllImageHandlers() is done implicitly now by wxPython.
Commit: 3b7896b37f42cd74a49e3e1e073e7e496a5d1b9e
https://github.com/dabodev/dabo/commit/3b7896b37f42cd74a49e3e1e073e7e496a5d1b9e
Author: Paul McNett <[email protected]>
Date: 2013-01-07 (Mon, 07 Jan 2013)
Changed paths:
M dabo/ui/uiwx/dPemMixin.py
Log Message:
-----------
Fix _getID() to get it from wx.NewId().
Prior to this, we were filling dMenu id's using the logic from dObject,
which was to return the python id. This doesn't work in 64-bit Python
because wxPython (even 64-bit wxPython) doesn't recognize large ints
as ints, causing a StackOverflow exception.
This is better also since we really want wx to dole out the id's for
wxPython objects.
Commit: f74080d51d4b3789b093f0961183353f2bc2d2ca
https://github.com/dabodev/dabo/commit/f74080d51d4b3789b093f0961183353f2bc2d2ca
Author: Paul McNett <[email protected]>
Date: 2013-01-07 (Mon, 07 Jan 2013)
Changed paths:
M dabo/lib/datanav/Form.py
Log Message:
-----------
Merge branch 'working' of github.com:dabodev/dabo into working
Commit: 225d5158094d7724f1e09559d9316271cee60118
https://github.com/dabodev/dabo/commit/225d5158094d7724f1e09559d9316271cee60118
Author: Paul McNett <[email protected]>
Date: 2013-01-07 (Mon, 07 Jan 2013)
Changed paths:
M dabo/ui/uiwx/dMenuBar.py
Log Message:
-----------
Fix to find menus by caption in wxPython 2.9.4.
I tested this in wx 2.8.12.1 as well: nothing is broken.
Commit: ebe6117bf079b84fbaccd7cdf2a1e0418bee12b8
https://github.com/dabodev/dabo/commit/ebe6117bf079b84fbaccd7cdf2a1e0418bee12b8
Author: Paul McNett <[email protected]>
Date: 2013-01-07 (Mon, 07 Jan 2013)
Changed paths:
M .gitignore
Log Message:
-----------
Fixed .gitignore to not ignore dabo/lib/
Commit: 7478b6c6e71b7c6b82fff0a59a2c6284fd353b30
https://github.com/dabodev/dabo/commit/7478b6c6e71b7c6b82fff0a59a2c6284fd353b30
Author: Paul McNett <[email protected]>
Date: 2013-01-07 (Mon, 07 Jan 2013)
Changed paths:
R dabo/lib/datanav2/__init__.py
Log Message:
-----------
Removed old datanav2 directory.
Commit: 1d27af0d7a179e5dd067e37fe3b742ebf65de4c2
https://github.com/dabodev/dabo/commit/1d27af0d7a179e5dd067e37fe3b742ebf65de4c2
Author: Paul McNett <[email protected]>
Date: 2013-01-07 (Mon, 07 Jan 2013)
Changed paths:
M dabo/lib/datanav/Page.py
Log Message:
-----------
Fixed for wxPython 2.9.4.0 - delayed PageEnter event.
The delayed PageEnter event results in the where clause being filled
out before the select page controls have been created yet, if
RequeryOnLoad is True. This forces the items to be created in
setWhere if needed.
Commit: e904920c12fecf82713b8c3acaae2c92213c448a
https://github.com/dabodev/dabo/commit/e904920c12fecf82713b8c3acaae2c92213c448a
Author: Paul McNett <[email protected]>
Date: 2013-01-07 (Mon, 07 Jan 2013)
Changed paths:
M dabo/settings.py
Log Message:
-----------
Fixed wording in the MDI commentary in settings.py
Commit: 9eba44f7cfe17abf58827a3967f09ac9a0a582f3
https://github.com/dabodev/dabo/commit/9eba44f7cfe17abf58827a3967f09ac9a0a582f3
Author: Paul McNett <[email protected]>
Date: 2013-01-07 (Mon, 07 Jan 2013)
Changed paths:
M dabo/settings.py
Log Message:
-----------
Settings changes for 1.0
This breaks backward compatibility by changing defaults for the
following settings:
importDebugger: now defaults to False
localizeDabo: now defaults to False
implicitImports: now defaults to False
Each of these can easily be turned back to True in settings_override
if needed but also the needed changes aren't great. In the case of
localizing Dabo the code the appdev will need to add in their app
is:
from dabo import dLocalize
dLocalize.install("dabo")
Don't merge this into master until version 1.0.
Commit: e133d28541851f10dbeea173c06ce1ecc7efd309
https://github.com/dabodev/dabo/commit/e133d28541851f10dbeea173c06ce1ecc7efd309
Author: Paul McNett <[email protected]>
Date: 2013-01-07 (Mon, 07 Jan 2013)
Changed paths:
M dabo/dEvents.py
M dabo/ui/uiwx/dGrid.py
Log Message:
-----------
Removed GridHeaderPaint event.
Raising it was keeping the grid headers from painting in wx2.9 on
Mac. I doubt anyone was relying on it but if so let me know before
we release Dabo 1.0.
I have a feeling most of the problems I've been fixing are more
related to Cocoa versus Carbon on Mac than to wxPython 2.9 versus
2.8.
Commit: b535713188a5dcdaafa4dde3f6fddbd86eb2b338
https://github.com/dabodev/dabo/commit/b535713188a5dcdaafa4dde3f6fddbd86eb2b338
Author: EdLeafe <[email protected]>
Date: 2013-01-08 (Tue, 08 Jan 2013)
Changed paths:
M dabo/dApp.py
Log Message:
-----------
First pass at changing dApp to work with git-based Web Update.
Removed the simplejson references, as json is now standard. Also alphabetized
the imports.
Commit: 23953213a8e8f08ceedf70c6bd2480b264bd14e8
https://github.com/dabodev/dabo/commit/23953213a8e8f08ceedf70c6bd2480b264bd14e8
Author: Paul McNett <[email protected]>
Date: 2013-01-09 (Wed, 09 Jan 2013)
Changed paths:
A dabo/lib/datanav2/__init__.py
Log Message:
-----------
Reverted removal of datanav2 (it's in working-1.0 now)
This reverts commit 7478b6c6e71b7c6b82fff0a59a2c6284fd353b30.
Commit: b31c57e53d8ad52c4c6e77da4f289daa4c043edf
https://github.com/dabodev/dabo/commit/b31c57e53d8ad52c4c6e77da4f289daa4c043edf
Author: Paul McNett <[email protected]>
Date: 2013-01-09 (Wed, 09 Jan 2013)
Changed paths:
M dabo/dEvents.py
M dabo/ui/uiwx/dGrid.py
Log Message:
-----------
Revert "Removed GridHeaderPaint event."
It's in working-1.0 now.
This reverts commit e133d28541851f10dbeea173c06ce1ecc7efd309.
Commit: bd566b103a3c43c5d8a14913cb57c997dbb7b648
https://github.com/dabodev/dabo/commit/bd566b103a3c43c5d8a14913cb57c997dbb7b648
Author: Paul McNett <[email protected]>
Date: 2013-01-09 (Wed, 09 Jan 2013)
Changed paths:
M dabo/dObject.py
A dabo/lib/autosuper/LICENSE.TXT
A dabo/lib/autosuper/__init__.py
A dabo/lib/autosuper/_autosuper.pyx
A dabo/lib/autosuper/autosuper.py
A dabo/lib/autosuper/setup.py
A dabo/lib/autosuper/test/autosuper.py
A dabo/lib/autosuper/test/autosuper_unittest.py
A dabo/lib/doDefaultMixin.py
Log Message:
-----------
Revert "Removed self.super() and self.doDefault()."
This is in working-1.0 now.
This reverts commit 057a4d3592706bf7e23408463f8f9188ecac4b8d.
Commit: 4b9e1d7889e441a268a0b3ea2fa8c7e67b408afd
https://github.com/dabodev/dabo/commit/4b9e1d7889e441a268a0b3ea2fa8c7e67b408afd
Author: Paul McNett <[email protected]>
Date: 2013-01-09 (Wed, 09 Jan 2013)
Changed paths:
M dabo/settings.py
Log Message:
-----------
Revert "Settings changes for 1.0"
It's in working-1.0 now.
This reverts commit 9eba44f7cfe17abf58827a3967f09ac9a0a582f3.
Commit: 864fa32015d74239fa9df6952d5513cf79f26477
https://github.com/dabodev/dabo/commit/864fa32015d74239fa9df6952d5513cf79f26477
Author: Paul McNett <[email protected]>
Date: 2013-01-09 (Wed, 09 Jan 2013)
Changed paths:
M dabo/ui/dDataControlMixinBase.py
Log Message:
-----------
Fix activeControlValid() for non-bound controls.
I have a set of controls that aren't bound to a bizobj directly - I
hook into the ValueChanged event. However, the ValueChange was being
delayed inside flushValue(), resulting in the modal dialog being
already closed by the time the event was fired.
Commit: 0d1569e61d61876a4e88a8473a6c67228c1d26ec
https://github.com/dabodev/dabo/commit/0d1569e61d61876a4e88a8473a6c67228c1d26ec
Author: Paul McNett <[email protected]>
Date: 2013-01-09 (Wed, 09 Jan 2013)
Changed paths:
M dabo/lib/reportWriter.py
Log Message:
-----------
Fixed multi-column printing with spanning objects.
An extraneous column change plus reprinting of the column headers
including spanning objects connecting incorrectly with the prior
column was happening in some cases even though we were at the end
of the report and there was nothing more to print.
Fixed by making sure we actually have stuff to print before
deciding to change columns.
Also, when changing columns, don't check ReprintHeaderOnNewPage,
but rather ReprintHeaderOnNewColumn.
Commit: db06c108b68c94e6cc1a3f6aadebe74f00423ee7
https://github.com/dabodev/dabo/commit/db06c108b68c94e6cc1a3f6aadebe74f00423ee7
Author: Paul McNett <[email protected]>
Date: 2013-01-09 (Wed, 09 Jan 2013)
Changed paths:
M dabo/lib/reportWriter.py
Log Message:
-----------
Improved reportwriter's ability to locate images.
This fixes 2 problems:
1) First try self.Application.HomeDirectory if available;
only if that fails try self.HomeDirectory which is defined
as the location of the rfxml file.
2) If the end-result is a path that has both windows-style and
unix-style separators, make them consistent with whatever
platform we are running on.
I had relative paths to image files coming from a database
field, and the paths were stored in the database using unix
slash separators, but running the app on Windows resulted in
paths like "c:\imagelibrary\frames/h_111.png" which confused
things and resulted in an expr error on the pdf instead of the
image.
Commit: 88c5ec0ff58aa9e700e78666efb2fcbcb0f16e37
https://github.com/dabodev/dabo/commit/88c5ec0ff58aa9e700e78666efb2fcbcb0f16e37
Author: Paul McNett <[email protected]>
Date: 2013-01-10 (Thu, 10 Jan 2013)
Changed paths:
M INSTALL
Log Message:
-----------
Modified INSTALL file to be current.
Note: I plan on reformatting in Markdown format and renaming this file
INSTALL.md in the near future.
Commit: 6d6371e4700d0c73848dec03f134b6ea9dbd5d9d
https://github.com/dabodev/dabo/commit/6d6371e4700d0c73848dec03f134b6ea9dbd5d9d
Author: Paul McNett <[email protected]>
Date: 2013-01-10 (Thu, 10 Jan 2013)
Changed paths:
M dabo/LICENSE.TXT
Log Message:
-----------
Bumped copyright year.
Commit: 4b8d3e353fbde960d1f4857faeb79d4bb3c78978
https://github.com/dabodev/dabo/commit/4b8d3e353fbde960d1f4857faeb79d4bb3c78978
Author: Paul McNett <[email protected]>
Date: 2013-01-10 (Thu, 10 Jan 2013)
Changed paths:
M setup.py
Log Message:
-----------
Fixed broken setup.py (it's dabo.__version__ now).
Commit: c22b0849cfaf6a5e8136da719bc639b5b6a66855
https://github.com/dabodev/dabo/commit/c22b0849cfaf6a5e8136da719bc639b5b6a66855
Author: Paul McNett <[email protected]>
Date: 2013-01-10 (Thu, 10 Jan 2013)
Changed paths:
A README.md
M dabo/__init__.py
Log Message:
-----------
Moved long dabo module docstring to README.md
Took the long docstring in dabo.__init__.py, reworded and reformatted
it lightly in Markdown format, and put it in README.md.
Commit: 5c3341ee7ed2885509afae4b1d2bff1073dfc26c
https://github.com/dabodev/dabo/commit/5c3341ee7ed2885509afae4b1d2bff1073dfc26c
Author: Paul McNett <[email protected]>
Date: 2013-01-10 (Thu, 10 Jan 2013)
Changed paths:
M README.md
Log Message:
-----------
Reformatted the links at bottom
Commit: 1117ce613e2b8dfee4396d73759fbf975a2d5262
https://github.com/dabodev/dabo/commit/1117ce613e2b8dfee4396d73759fbf975a2d5262
Author: Paul McNett <[email protected]>
Date: 2013-01-10 (Thu, 10 Jan 2013)
Changed paths:
M README.md
Log Message:
-----------
Tweaks to readme.
Commit: 353ab793b71b5464794c41166dbdafb6bda36d73
https://github.com/dabodev/dabo/commit/353ab793b71b5464794c41166dbdafb6bda36d73
Author: Paul McNett <[email protected]>
Date: 2013-01-10 (Thu, 10 Jan 2013)
Changed paths:
A RELEASENOTES.md
Log Message:
-----------
Added a starting RELEASENOTES.md
Commit: 3c9954f8889144b346814ff0c1b3092f5f90efc5
https://github.com/dabodev/dabo/commit/3c9954f8889144b346814ff0c1b3092f5f90efc5
Author: Paul McNett <[email protected]>
Date: 2013-01-10 (Thu, 10 Jan 2013)
Changed paths:
A INSTALL.md
Log Message:
-----------
Moved INSTALL to INSTALL.md; reformatted/rewrote
Commit: f0eba20d8b0c305c107948f16dcaee07dd4ecbfc
https://github.com/dabodev/dabo/commit/f0eba20d8b0c305c107948f16dcaee07dd4ecbfc
Author: Paul McNett <[email protected]>
Date: 2013-01-10 (Thu, 10 Jan 2013)
Changed paths:
R INSTALL
Log Message:
-----------
Forgot to stage the removal of INSTALL in last
Commit: d55d2773526034ebe58863a0daed198e80ab87ea
https://github.com/dabodev/dabo/commit/d55d2773526034ebe58863a0daed198e80ab87ea
Author: Paul McNett <[email protected]>
Date: 2013-01-10 (Thu, 10 Jan 2013)
Changed paths:
M RELEASENOTES.md
Log Message:
-----------
Updated release notes for 0.9.6.
Commit: 1dc40753f54e24c80f03a5497ba7c36b24a18b95
https://github.com/dabodev/dabo/commit/1dc40753f54e24c80f03a5497ba7c36b24a18b95
Author: Paul McNett <[email protected]>
Date: 2013-01-11 (Fri, 11 Jan 2013)
Changed paths:
M RELEASENOTES.md
M dabo/ui/uiwx/dPemMixin.py
Log Message:
-----------
Fixed to not update invisible forms and dialogs.
Commit c94ce83219e5fde90cbcd783185897afef962108 correctly removed
the check for Visibility on all objects when determining what to
update, but we still want to explicitly not update invisible
forms and dialogs for performance reasons and also because those
controls could be bound to empty bizobjs or be sitting on
out-of-context records.
Commit: 38495e06924e6398e39ae72262b2e2b4caa856ea
https://github.com/dabodev/dabo/commit/38495e06924e6398e39ae72262b2e2b4caa856ea
Author: Paul McNett <[email protected]>
Date: 2013-01-11 (Fri, 11 Jan 2013)
Changed paths:
M RELEASENOTES.md
Log Message:
-----------
Moved Subversion note to bottom.
Commit: 56be75174ada2649a2d7efde80e8257f81b00e64
https://github.com/dabodev/dabo/commit/56be75174ada2649a2d7efde80e8257f81b00e64
Author: Paul McNett <[email protected]>
Date: 2013-01-11 (Fri, 11 Jan 2013)
Changed paths:
M dabo/version.py
Log Message:
-----------
Merge commit '2ba3b52301ee0015872191c415c4af7d10c1ea45' into working
Compare: https://github.com/dabodev/dabo/compare/2ba3b52301ee...ecb7034b9b5e
--- StripMime Report -- processed MIME parts ---
multipart/mixed
text/plain (text body -- kept)
---
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message:
http://leafe.com/archives/byMID/[email protected]