summaryrefslogtreecommitdiff
path: root/pgweb/downloads/admin.py
AgeCommit message (Collapse)Author
2019-01-26Update syntax for relative importsMagnus Hagander
2019-01-17Fix whitespace and indentation, per pep8Magnus Hagander
2019-01-17Tabs, meet your new overlords: spacesMagnus Hagander
In a quest to reach pep8, use spaces to indent rather than tabs.
2016-05-14Remove old mirror selection code and dataMagnus Hagander
This has not been used for many years now, so let's get rid of it to save some maintenance.
2016-05-14Forms must now always specify include or exclude fieldsMagnus Hagander
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.
2016-05-14Prefix cross-application imports with pgwebMagnus Hagander
As required by the new project layout.
2014-01-01Replace wildcard imports with explicit onesMagnus Hagander
2012-07-11Make stackbuilder dependencies into a comma separated textfieldMagnus Hagander
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
2012-06-26Rename publisher->org in Product modelMagnus Hagander
This is requied to support notifications, and good for consistency in general.
2012-06-26Rename MarkdownPreviewAdmin to PgwebAdminMagnus Hagander
This is in preparation for adding more functionality to it...
2011-11-20Add function to duplicate stackbuilder appsMagnus Hagander
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).
2010-01-13Implement stackbuilderMagnus Hagander
2010-01-02Add support for mirror selection and redirection.Magnus Hagander
2009-12-28Implement software catalogue. Break the organisation object out asMagnus Hagander
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.