Age | Commit message (Collapse) | Author |
|
|
|
|
|
In a quest to reach pep8, use spaces to indent rather than tabs.
|
|
This has not been used for many years now, so let's get rid of
it to save some maintenance.
|
|
So for those forms that should have everything in them (and we don't
have a lot of those), set exclude=() to remove the error.
|
|
As required by the new project layout.
|
|
|
|
The "true dependencies" usign db relationships were too strict for
reality - multiple entries can have the same textid, and that's what
we need to depend on. Resolving it for platform is handled in the
StackBuilder client.
This update requires the following SQL to be run in the database:
DROP TABLE downloads_stackbuilderapp_dependencies;
ALTER TABLE downloads_stackbuilderapp ADD COLUMN txtdependencies varchar(1000) NOT NULL DEFAULT '';
ALTER TABLE downloads_stackbuilderapp ALTER COLUMN txtdependencies DROP DEFAULT;
Closes #167
|
|
This is requied to support notifications, and good for consistency
in general.
|
|
This is in preparation for adding more functionality to it...
|
|
It will append _new to the name (to avoid uniqueness conflicts), and
it will set the application to inactive (so it can be edited and then
activated once verified).
|
|
|
|
|
|
part of the core, since it seems like it could be useful for other
kinds of objects as well in the future, but for now only the
software catalogue uses it.
|