├── .d-compiler ├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── test.yml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.txt ├── Procfile ├── README.md ├── app.json ├── categories.json ├── compose.yaml ├── design ├── dub-logo.xar └── package-logo-inkscape.svg ├── docker-entrypoint.sh ├── dub.sdl ├── dub.selections.json ├── public ├── favicon.ico ├── fonts │ ├── fontello.eot │ ├── fontello.svg │ ├── fontello.ttf │ ├── fontello.woff │ ├── fontello.woff2 │ └── fontello_config.json ├── images │ ├── clippy.svg │ ├── default-logo.png │ ├── default-logo.svg │ ├── dub-header.png │ ├── dub-logo.png │ └── logo-small.png ├── opensearch.xml ├── scripts │ ├── clipboard.min.js │ ├── home.js │ ├── menu.js │ └── pkgadmin.js └── styles │ ├── common.css │ ├── markdown.css │ ├── top.css │ └── top_p.css ├── source ├── app.d └── dubregistry │ ├── api.d │ ├── cache.d │ ├── config.d │ ├── dbcontroller.d │ ├── internal │ ├── utils.d │ └── workqueue.d │ ├── mirror.d │ ├── mongodb.d │ ├── notificationcenter.d │ ├── package_.d │ ├── registry.d │ ├── repositories │ ├── bitbucket.d │ ├── gitea.d │ ├── github.d │ ├── gitlab.d │ └── repository.d │ ├── scheduler.d │ ├── viewutils.d │ └── web.d └── views ├── dubregistry.mail.package-deprecation-warnings.dt ├── dubregistry.mail.package-version-errors.dt ├── home.dt ├── layout.dt ├── layout.inc.menu.dt ├── my_packages.dt ├── my_packages.package.dt ├── my_packages.register.dt ├── my_packages.register.warn_fork.dt ├── my_packages.remove.dt ├── search_results.dt ├── start.dt ├── userman.forgot_login.dt ├── userman.login.dt ├── userman.profile.dt ├── userman.register.dt ├── view_package.dt ├── view_package.sample.dt └── view_package.versions.dt /.d-compiler: -------------------------------------------------------------------------------- 1 | dmd-2.092.1 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/app.json -------------------------------------------------------------------------------- /categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/categories.json -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/compose.yaml -------------------------------------------------------------------------------- /design/dub-logo.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/design/dub-logo.xar -------------------------------------------------------------------------------- /design/package-logo-inkscape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/design/package-logo-inkscape.svg -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/dub.sdl -------------------------------------------------------------------------------- /dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/dub.selections.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/fonts/fontello.eot -------------------------------------------------------------------------------- /public/fonts/fontello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/fonts/fontello.svg -------------------------------------------------------------------------------- /public/fonts/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/fonts/fontello.ttf -------------------------------------------------------------------------------- /public/fonts/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/fonts/fontello.woff -------------------------------------------------------------------------------- /public/fonts/fontello.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/fonts/fontello.woff2 -------------------------------------------------------------------------------- /public/fonts/fontello_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/fonts/fontello_config.json -------------------------------------------------------------------------------- /public/images/clippy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/images/clippy.svg -------------------------------------------------------------------------------- /public/images/default-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/images/default-logo.png -------------------------------------------------------------------------------- /public/images/default-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/images/default-logo.svg -------------------------------------------------------------------------------- /public/images/dub-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/images/dub-header.png -------------------------------------------------------------------------------- /public/images/dub-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/images/dub-logo.png -------------------------------------------------------------------------------- /public/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/images/logo-small.png -------------------------------------------------------------------------------- /public/opensearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/opensearch.xml -------------------------------------------------------------------------------- /public/scripts/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/scripts/clipboard.min.js -------------------------------------------------------------------------------- /public/scripts/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/scripts/home.js -------------------------------------------------------------------------------- /public/scripts/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/scripts/menu.js -------------------------------------------------------------------------------- /public/scripts/pkgadmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/scripts/pkgadmin.js -------------------------------------------------------------------------------- /public/styles/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/styles/common.css -------------------------------------------------------------------------------- /public/styles/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/styles/markdown.css -------------------------------------------------------------------------------- /public/styles/top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/styles/top.css -------------------------------------------------------------------------------- /public/styles/top_p.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/public/styles/top_p.css -------------------------------------------------------------------------------- /source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/app.d -------------------------------------------------------------------------------- /source/dubregistry/api.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/api.d -------------------------------------------------------------------------------- /source/dubregistry/cache.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/cache.d -------------------------------------------------------------------------------- /source/dubregistry/config.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/config.d -------------------------------------------------------------------------------- /source/dubregistry/dbcontroller.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/dbcontroller.d -------------------------------------------------------------------------------- /source/dubregistry/internal/utils.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/internal/utils.d -------------------------------------------------------------------------------- /source/dubregistry/internal/workqueue.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/internal/workqueue.d -------------------------------------------------------------------------------- /source/dubregistry/mirror.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/mirror.d -------------------------------------------------------------------------------- /source/dubregistry/mongodb.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/mongodb.d -------------------------------------------------------------------------------- /source/dubregistry/notificationcenter.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/notificationcenter.d -------------------------------------------------------------------------------- /source/dubregistry/package_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/package_.d -------------------------------------------------------------------------------- /source/dubregistry/registry.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/registry.d -------------------------------------------------------------------------------- /source/dubregistry/repositories/bitbucket.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/repositories/bitbucket.d -------------------------------------------------------------------------------- /source/dubregistry/repositories/gitea.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/repositories/gitea.d -------------------------------------------------------------------------------- /source/dubregistry/repositories/github.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/repositories/github.d -------------------------------------------------------------------------------- /source/dubregistry/repositories/gitlab.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/repositories/gitlab.d -------------------------------------------------------------------------------- /source/dubregistry/repositories/repository.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/repositories/repository.d -------------------------------------------------------------------------------- /source/dubregistry/scheduler.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/scheduler.d -------------------------------------------------------------------------------- /source/dubregistry/viewutils.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/viewutils.d -------------------------------------------------------------------------------- /source/dubregistry/web.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/source/dubregistry/web.d -------------------------------------------------------------------------------- /views/dubregistry.mail.package-deprecation-warnings.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/dubregistry.mail.package-deprecation-warnings.dt -------------------------------------------------------------------------------- /views/dubregistry.mail.package-version-errors.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/dubregistry.mail.package-version-errors.dt -------------------------------------------------------------------------------- /views/home.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/home.dt -------------------------------------------------------------------------------- /views/layout.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/layout.dt -------------------------------------------------------------------------------- /views/layout.inc.menu.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/layout.inc.menu.dt -------------------------------------------------------------------------------- /views/my_packages.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/my_packages.dt -------------------------------------------------------------------------------- /views/my_packages.package.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/my_packages.package.dt -------------------------------------------------------------------------------- /views/my_packages.register.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/my_packages.register.dt -------------------------------------------------------------------------------- /views/my_packages.register.warn_fork.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/my_packages.register.warn_fork.dt -------------------------------------------------------------------------------- /views/my_packages.remove.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/my_packages.remove.dt -------------------------------------------------------------------------------- /views/search_results.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/search_results.dt -------------------------------------------------------------------------------- /views/start.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/start.dt -------------------------------------------------------------------------------- /views/userman.forgot_login.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/userman.forgot_login.dt -------------------------------------------------------------------------------- /views/userman.login.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/userman.login.dt -------------------------------------------------------------------------------- /views/userman.profile.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/userman.profile.dt -------------------------------------------------------------------------------- /views/userman.register.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/userman.register.dt -------------------------------------------------------------------------------- /views/view_package.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/view_package.dt -------------------------------------------------------------------------------- /views/view_package.sample.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/view_package.sample.dt -------------------------------------------------------------------------------- /views/view_package.versions.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/dub-registry/HEAD/views/view_package.versions.dt --------------------------------------------------------------------------------