]> git.ipfire.org Git - people/jschlag/pbs.git/commit - src/hub/__init__.py
Initial import.
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 8 Oct 2011 09:40:47 +0000 (11:40 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 8 Oct 2011 09:40:47 +0000 (11:40 +0200)
commit9137135a5912aa6ae71da8b0ca59d6fd29b949e8
tree1342c830d74b395306ecab215bcc3e5b3d665723
Initial import.
120 files changed:
.gitignore [new file with mode: 0644]
Makefile [new file with mode: 0644]
backend/__init__.py [new file with mode: 0644]
backend/base.py [new file with mode: 0644]
backend/build.py [new file with mode: 0644]
backend/builders.py [new file with mode: 0644]
backend/constants.py [new file with mode: 0644]
backend/database.py [new file with mode: 0644]
backend/distribution.py [new file with mode: 0644]
backend/managers.py [new file with mode: 0644]
backend/messages.py [new file with mode: 0644]
backend/misc.py [new file with mode: 0644]
backend/packages.py [new file with mode: 0644]
backend/repository.py [new file with mode: 0644]
backend/settings.py [new file with mode: 0644]
backend/sources.py [new file with mode: 0644]
backend/uploads.py [new file with mode: 0644]
backend/users.py [new file with mode: 0644]
data/static/css/style.css [new file with mode: 0644]
data/static/favicon.ico [new file with mode: 0644]
data/static/images/icons/build-dependency_error.png [new file with mode: 0644]
data/static/images/icons/build-dispatching.png [new file with mode: 0644]
data/static/images/icons/build-failed.png [new file with mode: 0644]
data/static/images/icons/build-finished.png [new file with mode: 0644]
data/static/images/icons/build-pending.png [new file with mode: 0644]
data/static/images/icons/build-running.png [new file with mode: 0644]
data/static/images/icons/build-unknown.png [new file with mode: 0644]
data/static/images/icons/build-uploading.png [new file with mode: 0644]
data/static/images/icons/build-waiting.png [new file with mode: 0644]
data/static/images/icons/builder-disabled.png [new file with mode: 0644]
data/static/images/icons/slave-offline.png [new symlink]
data/static/images/icons/slave-online.png [new symlink]
data/static/images/img01.jpg [new file with mode: 0644]
data/static/images/img02.jpg [new file with mode: 0644]
data/static/images/img03.jpg [new file with mode: 0644]
data/static/images/img04.jpg [new file with mode: 0644]
data/static/images/ipfire_tux_128x128.png [new file with mode: 0644]
data/static/images/readme.txt [new file with mode: 0644]
data/static/js/jquery-1.6.min.js [new file with mode: 0644]
data/static/js/pbs.js [new file with mode: 0644]
data/static/robots.txt [new file with mode: 0644]
data/templates/base.html [new file with mode: 0644]
data/templates/build-detail.html [new file with mode: 0644]
data/templates/build-filter.html [new file with mode: 0644]
data/templates/build-list.html [new file with mode: 0644]
data/templates/build-priority.html [new file with mode: 0644]
data/templates/build-schedule-rebuild.html [new file with mode: 0644]
data/templates/build-schedule-test.html [new file with mode: 0644]
data/templates/builder-delete.html [new file with mode: 0644]
data/templates/builder-detail.html [new file with mode: 0644]
data/templates/builder-edit.html [new file with mode: 0644]
data/templates/builder-list.html [new file with mode: 0644]
data/templates/builder-new.html [new file with mode: 0644]
data/templates/builder-pass.html [new file with mode: 0644]
data/templates/distro-detail.html [new file with mode: 0644]
data/templates/distro-edit.html [new file with mode: 0644]
data/templates/distro-list.html [new file with mode: 0644]
data/templates/docs-base.html [new file with mode: 0644]
data/templates/docs-build.html [new file with mode: 0644]
data/templates/docs-index.html [new file with mode: 0644]
data/templates/docs-users.html [new file with mode: 0644]
data/templates/error-404.html [new file with mode: 0644]
data/templates/error-500.html [new file with mode: 0644]
data/templates/error.html [new file with mode: 0644]
data/templates/file-detail.html [new file with mode: 0644]
data/templates/index.html [new file with mode: 0644]
data/templates/log.html [new file with mode: 0644]
data/templates/login-successful.html [new file with mode: 0644]
data/templates/login.html [new file with mode: 0644]
data/templates/logout.html [new file with mode: 0644]
data/templates/modules/build-log.html [new file with mode: 0644]
data/templates/modules/build-offset.html [new file with mode: 0644]
data/templates/modules/build-table.html [new file with mode: 0644]
data/templates/modules/comments-table.html [new file with mode: 0644]
data/templates/modules/files-table.html [new file with mode: 0644]
data/templates/modules/log-table.html [new file with mode: 0644]
data/templates/modules/package-files-table.html [new file with mode: 0644]
data/templates/modules/package-table-detail.html [new file with mode: 0644]
data/templates/modules/package-table.html [new file with mode: 0644]
data/templates/modules/repo-actions-table.html [new file with mode: 0644]
data/templates/modules/repository-table.html [new file with mode: 0644]
data/templates/modules/source-table.html [new file with mode: 0644]
data/templates/modules/user-table.html [new file with mode: 0644]
data/templates/package-detail-list.html [new file with mode: 0644]
data/templates/package-detail.html [new file with mode: 0644]
data/templates/package-list.html [new file with mode: 0644]
data/templates/register-activation-fail.html [new file with mode: 0644]
data/templates/register-activation-success.html [new file with mode: 0644]
data/templates/register-fail.html [new file with mode: 0644]
data/templates/register-success.html [new file with mode: 0644]
data/templates/register.html [new file with mode: 0644]
data/templates/repository-detail.html [new file with mode: 0644]
data/templates/search-form.html [new file with mode: 0644]
data/templates/search-results.html [new file with mode: 0644]
data/templates/source-detail.html [new file with mode: 0644]
data/templates/source-list.html [new file with mode: 0644]
data/templates/user-comments.html [new file with mode: 0644]
data/templates/user-delete.html [new file with mode: 0644]
data/templates/user-list.html [new file with mode: 0644]
data/templates/user-profile-edit-fail.html [new file with mode: 0644]
data/templates/user-profile-edit.html [new file with mode: 0644]
data/templates/user-profile-need-activation.html [new file with mode: 0644]
data/templates/user-profile.html [new file with mode: 0644]
data/translations/de_DE/LC_MESSAGES/pakfire.mo [new file with mode: 0644]
data/translations/de_DE/LC_MESSAGES/pakfire.po [new file with mode: 0644]
data/translations/de_DE/LC_MESSAGES/pakfire.po.sic [new file with mode: 0644]
data/translations/pakfire.pot [new file with mode: 0644]
master/__init__.py [new file with mode: 0644]
master/handlers.py [new file with mode: 0644]
pakfire-manager [new file with mode: 0644]
pakfire-master [new file with mode: 0644]
pakfire-web [new file with mode: 0644]
web/__init__.py [new file with mode: 0644]
web/handlers.py [new file with mode: 0644]
web/handlers_auth.py [new file with mode: 0644]
web/handlers_base.py [new file with mode: 0644]
web/handlers_builders.py [new file with mode: 0644]
web/handlers_search.py [new file with mode: 0644]
web/handlers_users.py [new file with mode: 0644]
web/ui_modules.py [new file with mode: 0644]