├── .env ├── .gitignore ├── .s2iignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── README.docker ├── README.md ├── conf ├── bash-completion │ └── softwarecollections ├── cron │ └── softwarecollections ├── httpd │ ├── environment.override.conf │ ├── softwarecollections.conf │ └── softwarecollections.env └── rsyncd │ ├── rsyncd.conf │ └── softwarecollections-rsyncd.service ├── data └── .gitignore ├── example-data.yaml ├── guide-build ├── guide-import ├── guide-source ├── guide-templatize ├── htdocs ├── media │ └── .gitignore ├── repos │ └── .gitignore ├── static │ └── .gitignore └── wsgi.py ├── manage.py ├── packaging-guide-1.tar.gz ├── rel-eng ├── lib │ └── setup_builder.py ├── packages │ ├── .readme │ └── softwarecollections ├── releasers.conf └── tito.props ├── run-devel ├── run-docker-test ├── setup.cfg ├── setup.py ├── softwarecollections-db-setup ├── softwarecollections-services-setup ├── softwarecollections.spec ├── softwarecollections ├── __init__.py ├── apps.py ├── auth │ ├── __init__.py │ ├── apps.py │ ├── backend.py │ └── templatetags │ │ ├── __init__.py │ │ └── auth.py ├── copr.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── makeerrorpages.py │ │ ├── makesuperuser.py │ │ └── savekey.py ├── middleware │ ├── __init__.py │ └── forwarded.py ├── pages │ ├── __init__.py │ └── views.py ├── scls │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── checks.py │ ├── forms.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── sclcreaterepo.py │ │ │ ├── sclotherrepos.py │ │ │ ├── sclprovides.py │ │ │ ├── sclrelated.py │ │ │ ├── sclrpms.py │ │ │ └── sclsync.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_centos_repos.py │ │ ├── 0003_other_repos.py │ │ ├── 0004_other_repos_default_values.py │ │ └── __init__.py │ ├── models.py │ ├── scl-release.spec │ ├── static │ │ └── scls │ │ │ ├── icons │ │ │ ├── centos.png │ │ │ ├── empty.png │ │ │ ├── epel.png │ │ │ ├── fedora.png │ │ │ └── rhel.png │ │ │ └── javascripts │ │ │ └── collection-add-edit.js │ ├── templates │ │ └── scls │ │ │ ├── base.html │ │ │ ├── filter.html │ │ │ ├── form │ │ │ ├── table_option.html │ │ │ └── table_select.html │ │ │ ├── list_all.html │ │ │ ├── list_base.html │ │ │ ├── list_my.html │ │ │ ├── list_tag.html │ │ │ ├── list_user.html │ │ │ ├── pagination.html │ │ │ ├── softwarecollection_acl.html │ │ │ ├── softwarecollection_base.html │ │ │ ├── softwarecollection_complain.html │ │ │ ├── softwarecollection_coprs.html │ │ │ ├── softwarecollection_delete.html │ │ │ ├── softwarecollection_detail.html │ │ │ ├── softwarecollection_edit.html │ │ │ ├── softwarecollection_new.html │ │ │ ├── softwarecollection_preview.html │ │ │ ├── softwarecollection_repos.html │ │ │ ├── softwarecollection_review_req.html │ │ │ ├── softwarecollection_sub_base.html │ │ │ ├── softwarecollection_sync_req.html │ │ │ ├── softwarecollection_toolbar.html │ │ │ ├── stars.html │ │ │ └── submenu.html │ ├── templatetags │ │ ├── policy_name.py │ │ ├── rating_stars.py │ │ └── truncate_tags.py │ ├── tests.py │ ├── urls.py │ ├── validators.py │ └── views.py ├── settings │ ├── __init__.py │ └── env_util.py ├── static │ ├── .gitignore │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── apple-touch-icon-114x114-precomposed.png │ │ ├── apple-touch-icon-57x57-precomposed.png │ │ ├── apple-touch-icon-72x72-precomposed.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── blurr4.jpg │ │ ├── coding-environments.png │ │ ├── favicon.ico │ │ ├── logo.png │ │ ├── rpm.png │ │ ├── star.png │ │ └── star_empty.png │ ├── index-footer.html │ ├── index-header.html │ ├── javascripts │ │ ├── application.js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ └── stylesheets │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── custom.css │ │ ├── guide.css │ │ └── index.css ├── templates │ ├── 400.html │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── admin │ │ └── base_site.html │ ├── base.html │ ├── default.html │ ├── home.html │ ├── menu.html │ ├── pages │ │ ├── en.html │ │ └── en │ │ │ ├── about.html │ │ │ ├── about │ │ │ ├── developers.html │ │ │ ├── distros.html │ │ │ └── users.html │ │ │ ├── docs.html │ │ │ └── docs │ │ │ ├── .gitignore │ │ │ ├── add-to-catalogue.html │ │ │ ├── developers.html │ │ │ ├── distros.html │ │ │ ├── faq.html │ │ │ ├── licensing.html │ │ │ └── users.html │ ├── section_about.html │ ├── section_docs.html │ ├── section_docs_guide.html │ ├── submenu.html │ ├── submenu_about.html │ ├── submenu_docs.html │ └── with_submenu.html ├── templatetags │ └── menu_item.py ├── tests.py ├── urls.py └── wsgi.py ├── tests ├── conftest.py ├── test_management.py ├── test_middleware_forwarded.py ├── test_regression.py ├── test_sanity.py └── test_settings.py └── tox.ini /.env: -------------------------------------------------------------------------------- 1 | SCL_DEBUG=True 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/.gitignore -------------------------------------------------------------------------------- /.s2iignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/.s2iignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/README.docker -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/README.md -------------------------------------------------------------------------------- /conf/bash-completion/softwarecollections: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/conf/bash-completion/softwarecollections -------------------------------------------------------------------------------- /conf/cron/softwarecollections: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/conf/cron/softwarecollections -------------------------------------------------------------------------------- /conf/httpd/environment.override.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/conf/httpd/environment.override.conf -------------------------------------------------------------------------------- /conf/httpd/softwarecollections.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/conf/httpd/softwarecollections.conf -------------------------------------------------------------------------------- /conf/httpd/softwarecollections.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/conf/httpd/softwarecollections.env -------------------------------------------------------------------------------- /conf/rsyncd/rsyncd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/conf/rsyncd/rsyncd.conf -------------------------------------------------------------------------------- /conf/rsyncd/softwarecollections-rsyncd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/conf/rsyncd/softwarecollections-rsyncd.service -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /example-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/example-data.yaml -------------------------------------------------------------------------------- /guide-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/guide-build -------------------------------------------------------------------------------- /guide-import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/guide-import -------------------------------------------------------------------------------- /guide-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/guide-source -------------------------------------------------------------------------------- /guide-templatize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/guide-templatize -------------------------------------------------------------------------------- /htdocs/media/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /htdocs/repos/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /htdocs/static/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /htdocs/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/htdocs/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/manage.py -------------------------------------------------------------------------------- /packaging-guide-1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/packaging-guide-1.tar.gz -------------------------------------------------------------------------------- /rel-eng/lib/setup_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/rel-eng/lib/setup_builder.py -------------------------------------------------------------------------------- /rel-eng/packages/.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/rel-eng/packages/.readme -------------------------------------------------------------------------------- /rel-eng/packages/softwarecollections: -------------------------------------------------------------------------------- 1 | 0.19-1 ./ 2 | -------------------------------------------------------------------------------- /rel-eng/releasers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/rel-eng/releasers.conf -------------------------------------------------------------------------------- /rel-eng/tito.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/rel-eng/tito.props -------------------------------------------------------------------------------- /run-devel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/run-devel -------------------------------------------------------------------------------- /run-docker-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/run-docker-test -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/setup.py -------------------------------------------------------------------------------- /softwarecollections-db-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections-db-setup -------------------------------------------------------------------------------- /softwarecollections-services-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections-services-setup -------------------------------------------------------------------------------- /softwarecollections.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections.spec -------------------------------------------------------------------------------- /softwarecollections/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /softwarecollections/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/apps.py -------------------------------------------------------------------------------- /softwarecollections/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/auth/__init__.py -------------------------------------------------------------------------------- /softwarecollections/auth/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/auth/apps.py -------------------------------------------------------------------------------- /softwarecollections/auth/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/auth/backend.py -------------------------------------------------------------------------------- /softwarecollections/auth/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /softwarecollections/auth/templatetags/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/auth/templatetags/auth.py -------------------------------------------------------------------------------- /softwarecollections/copr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/copr.py -------------------------------------------------------------------------------- /softwarecollections/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /softwarecollections/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/management/commands/__init__.py -------------------------------------------------------------------------------- /softwarecollections/management/commands/makeerrorpages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/management/commands/makeerrorpages.py -------------------------------------------------------------------------------- /softwarecollections/management/commands/makesuperuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/management/commands/makesuperuser.py -------------------------------------------------------------------------------- /softwarecollections/management/commands/savekey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/management/commands/savekey.py -------------------------------------------------------------------------------- /softwarecollections/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /softwarecollections/middleware/forwarded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/middleware/forwarded.py -------------------------------------------------------------------------------- /softwarecollections/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /softwarecollections/pages/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/pages/views.py -------------------------------------------------------------------------------- /softwarecollections/scls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /softwarecollections/scls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/admin.py -------------------------------------------------------------------------------- /softwarecollections/scls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/apps.py -------------------------------------------------------------------------------- /softwarecollections/scls/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/checks.py -------------------------------------------------------------------------------- /softwarecollections/scls/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/forms.py -------------------------------------------------------------------------------- /softwarecollections/scls/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /softwarecollections/scls/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /softwarecollections/scls/management/commands/sclcreaterepo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/management/commands/sclcreaterepo.py -------------------------------------------------------------------------------- /softwarecollections/scls/management/commands/sclotherrepos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/management/commands/sclotherrepos.py -------------------------------------------------------------------------------- /softwarecollections/scls/management/commands/sclprovides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/management/commands/sclprovides.py -------------------------------------------------------------------------------- /softwarecollections/scls/management/commands/sclrelated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/management/commands/sclrelated.py -------------------------------------------------------------------------------- /softwarecollections/scls/management/commands/sclrpms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/management/commands/sclrpms.py -------------------------------------------------------------------------------- /softwarecollections/scls/management/commands/sclsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/management/commands/sclsync.py -------------------------------------------------------------------------------- /softwarecollections/scls/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/migrations/0001_initial.py -------------------------------------------------------------------------------- /softwarecollections/scls/migrations/0002_centos_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/migrations/0002_centos_repos.py -------------------------------------------------------------------------------- /softwarecollections/scls/migrations/0003_other_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/migrations/0003_other_repos.py -------------------------------------------------------------------------------- /softwarecollections/scls/migrations/0004_other_repos_default_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/migrations/0004_other_repos_default_values.py -------------------------------------------------------------------------------- /softwarecollections/scls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /softwarecollections/scls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/models.py -------------------------------------------------------------------------------- /softwarecollections/scls/scl-release.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/scl-release.spec -------------------------------------------------------------------------------- /softwarecollections/scls/static/scls/icons/centos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/static/scls/icons/centos.png -------------------------------------------------------------------------------- /softwarecollections/scls/static/scls/icons/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/static/scls/icons/empty.png -------------------------------------------------------------------------------- /softwarecollections/scls/static/scls/icons/epel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/static/scls/icons/epel.png -------------------------------------------------------------------------------- /softwarecollections/scls/static/scls/icons/fedora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/static/scls/icons/fedora.png -------------------------------------------------------------------------------- /softwarecollections/scls/static/scls/icons/rhel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/static/scls/icons/rhel.png -------------------------------------------------------------------------------- /softwarecollections/scls/static/scls/javascripts/collection-add-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/static/scls/javascripts/collection-add-edit.js -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/base.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/filter.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/form/table_option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/form/table_option.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/form/table_select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/form/table_select.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/list_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/list_all.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/list_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/list_base.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/list_my.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/list_my.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/list_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/list_tag.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/list_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/list_user.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/pagination.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/softwarecollection_acl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/softwarecollection_acl.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/softwarecollection_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/softwarecollection_base.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/softwarecollection_complain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/softwarecollection_complain.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/softwarecollection_coprs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/softwarecollection_coprs.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/softwarecollection_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/softwarecollection_delete.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/softwarecollection_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/softwarecollection_detail.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/softwarecollection_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/softwarecollection_edit.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/softwarecollection_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/softwarecollection_new.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/softwarecollection_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/softwarecollection_preview.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/softwarecollection_repos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/softwarecollection_repos.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/softwarecollection_review_req.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/softwarecollection_review_req.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/softwarecollection_sub_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/softwarecollection_sub_base.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/softwarecollection_sync_req.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/softwarecollection_sync_req.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/softwarecollection_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/softwarecollection_toolbar.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/stars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/stars.html -------------------------------------------------------------------------------- /softwarecollections/scls/templates/scls/submenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templates/scls/submenu.html -------------------------------------------------------------------------------- /softwarecollections/scls/templatetags/policy_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templatetags/policy_name.py -------------------------------------------------------------------------------- /softwarecollections/scls/templatetags/rating_stars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templatetags/rating_stars.py -------------------------------------------------------------------------------- /softwarecollections/scls/templatetags/truncate_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/templatetags/truncate_tags.py -------------------------------------------------------------------------------- /softwarecollections/scls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/tests.py -------------------------------------------------------------------------------- /softwarecollections/scls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/urls.py -------------------------------------------------------------------------------- /softwarecollections/scls/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/validators.py -------------------------------------------------------------------------------- /softwarecollections/scls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/scls/views.py -------------------------------------------------------------------------------- /softwarecollections/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/settings/__init__.py -------------------------------------------------------------------------------- /softwarecollections/settings/env_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/settings/env_util.py -------------------------------------------------------------------------------- /softwarecollections/static/.gitignore: -------------------------------------------------------------------------------- 1 | guide/ 2 | -------------------------------------------------------------------------------- /softwarecollections/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /softwarecollections/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /softwarecollections/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /softwarecollections/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /softwarecollections/static/images/apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/images/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /softwarecollections/static/images/apple-touch-icon-57x57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/images/apple-touch-icon-57x57-precomposed.png -------------------------------------------------------------------------------- /softwarecollections/static/images/apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/images/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /softwarecollections/static/images/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/images/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /softwarecollections/static/images/blurr4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/images/blurr4.jpg -------------------------------------------------------------------------------- /softwarecollections/static/images/coding-environments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/images/coding-environments.png -------------------------------------------------------------------------------- /softwarecollections/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/images/favicon.ico -------------------------------------------------------------------------------- /softwarecollections/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/images/logo.png -------------------------------------------------------------------------------- /softwarecollections/static/images/rpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/images/rpm.png -------------------------------------------------------------------------------- /softwarecollections/static/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/images/star.png -------------------------------------------------------------------------------- /softwarecollections/static/images/star_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/images/star_empty.png -------------------------------------------------------------------------------- /softwarecollections/static/index-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/index-footer.html -------------------------------------------------------------------------------- /softwarecollections/static/index-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/index-header.html -------------------------------------------------------------------------------- /softwarecollections/static/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/javascripts/application.js -------------------------------------------------------------------------------- /softwarecollections/static/javascripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/javascripts/bootstrap.js -------------------------------------------------------------------------------- /softwarecollections/static/javascripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/javascripts/bootstrap.min.js -------------------------------------------------------------------------------- /softwarecollections/static/stylesheets/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/stylesheets/bootstrap-theme.css -------------------------------------------------------------------------------- /softwarecollections/static/stylesheets/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/stylesheets/bootstrap-theme.css.map -------------------------------------------------------------------------------- /softwarecollections/static/stylesheets/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/stylesheets/bootstrap-theme.min.css -------------------------------------------------------------------------------- /softwarecollections/static/stylesheets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/stylesheets/bootstrap.css -------------------------------------------------------------------------------- /softwarecollections/static/stylesheets/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/stylesheets/bootstrap.css.map -------------------------------------------------------------------------------- /softwarecollections/static/stylesheets/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/stylesheets/bootstrap.min.css -------------------------------------------------------------------------------- /softwarecollections/static/stylesheets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/stylesheets/custom.css -------------------------------------------------------------------------------- /softwarecollections/static/stylesheets/guide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/stylesheets/guide.css -------------------------------------------------------------------------------- /softwarecollections/static/stylesheets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/static/stylesheets/index.css -------------------------------------------------------------------------------- /softwarecollections/templates/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/400.html -------------------------------------------------------------------------------- /softwarecollections/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/403.html -------------------------------------------------------------------------------- /softwarecollections/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/404.html -------------------------------------------------------------------------------- /softwarecollections/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/500.html -------------------------------------------------------------------------------- /softwarecollections/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/admin/base_site.html -------------------------------------------------------------------------------- /softwarecollections/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/base.html -------------------------------------------------------------------------------- /softwarecollections/templates/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/default.html -------------------------------------------------------------------------------- /softwarecollections/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/home.html -------------------------------------------------------------------------------- /softwarecollections/templates/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/menu.html -------------------------------------------------------------------------------- /softwarecollections/templates/pages/en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/pages/en.html -------------------------------------------------------------------------------- /softwarecollections/templates/pages/en/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/pages/en/about.html -------------------------------------------------------------------------------- /softwarecollections/templates/pages/en/about/developers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/pages/en/about/developers.html -------------------------------------------------------------------------------- /softwarecollections/templates/pages/en/about/distros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/pages/en/about/distros.html -------------------------------------------------------------------------------- /softwarecollections/templates/pages/en/about/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/pages/en/about/users.html -------------------------------------------------------------------------------- /softwarecollections/templates/pages/en/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/pages/en/docs.html -------------------------------------------------------------------------------- /softwarecollections/templates/pages/en/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/pages/en/docs/.gitignore -------------------------------------------------------------------------------- /softwarecollections/templates/pages/en/docs/add-to-catalogue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/pages/en/docs/add-to-catalogue.html -------------------------------------------------------------------------------- /softwarecollections/templates/pages/en/docs/developers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/pages/en/docs/developers.html -------------------------------------------------------------------------------- /softwarecollections/templates/pages/en/docs/distros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/pages/en/docs/distros.html -------------------------------------------------------------------------------- /softwarecollections/templates/pages/en/docs/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/pages/en/docs/faq.html -------------------------------------------------------------------------------- /softwarecollections/templates/pages/en/docs/licensing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/pages/en/docs/licensing.html -------------------------------------------------------------------------------- /softwarecollections/templates/pages/en/docs/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/pages/en/docs/users.html -------------------------------------------------------------------------------- /softwarecollections/templates/section_about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/section_about.html -------------------------------------------------------------------------------- /softwarecollections/templates/section_docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/section_docs.html -------------------------------------------------------------------------------- /softwarecollections/templates/section_docs_guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/section_docs_guide.html -------------------------------------------------------------------------------- /softwarecollections/templates/submenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/submenu.html -------------------------------------------------------------------------------- /softwarecollections/templates/submenu_about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/submenu_about.html -------------------------------------------------------------------------------- /softwarecollections/templates/submenu_docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/submenu_docs.html -------------------------------------------------------------------------------- /softwarecollections/templates/with_submenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templates/with_submenu.html -------------------------------------------------------------------------------- /softwarecollections/templatetags/menu_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/templatetags/menu_item.py -------------------------------------------------------------------------------- /softwarecollections/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/tests.py -------------------------------------------------------------------------------- /softwarecollections/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/urls.py -------------------------------------------------------------------------------- /softwarecollections/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/softwarecollections/wsgi.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/tests/test_management.py -------------------------------------------------------------------------------- /tests/test_middleware_forwarded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/tests/test_middleware_forwarded.py -------------------------------------------------------------------------------- /tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/tests/test_regression.py -------------------------------------------------------------------------------- /tests/test_sanity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/tests/test_sanity.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/softwarecollections/HEAD/tox.ini --------------------------------------------------------------------------------