├── .dockerignore ├── .editorconfig ├── .env ├── .git-blame-ignore-revs ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab └── issue_templates │ ├── Bug.md │ └── Feature.md ├── .mailmap ├── .pre-commit-config.yaml ├── .tx └── config ├── AUTHORS ├── CONTRIBUTING.md ├── COPYING ├── Dockerfile ├── INSTALL ├── LICENSES └── starlette_exporter ├── README.md ├── TESTING ├── alembic.ini ├── aurweb ├── __init__.py ├── archives │ ├── __init__.py │ └── spec │ │ ├── __init__.py │ │ ├── base.py │ │ ├── metadata.py │ │ ├── pkgbases.py │ │ ├── pkgnames.py │ │ └── users.py ├── asgi.py ├── aur_logging.py ├── aur_redis.py ├── auth │ ├── __init__.py │ └── creds.py ├── benchmark.py ├── cache.py ├── captcha.py ├── config.py ├── cookies.py ├── db.py ├── defaults.py ├── exceptions.py ├── filters.py ├── git │ ├── __init__.py │ ├── auth.py │ ├── serve.py │ └── update.py ├── initdb.py ├── l10n.py ├── models │ ├── __init__.py │ ├── accepted_term.py │ ├── account_type.py │ ├── api_rate_limit.py │ ├── ban.py │ ├── declarative.py │ ├── dependency_type.py │ ├── group.py │ ├── license.py │ ├── official_provider.py │ ├── package.py │ ├── package_base.py │ ├── package_blacklist.py │ ├── package_comaintainer.py │ ├── package_comment.py │ ├── package_dependency.py │ ├── package_group.py │ ├── package_keyword.py │ ├── package_license.py │ ├── package_notification.py │ ├── package_relation.py │ ├── package_request.py │ ├── package_source.py │ ├── package_vote.py │ ├── relation_type.py │ ├── request_type.py │ ├── session.py │ ├── ssh_pub_key.py │ ├── term.py │ ├── user.py │ ├── vote.py │ └── voteinfo.py ├── packages │ ├── __init__.py │ ├── requests.py │ ├── search.py │ └── util.py ├── pkgbase │ ├── __init__.py │ ├── actions.py │ ├── util.py │ └── validate.py ├── prometheus.py ├── ratelimit.py ├── requests │ ├── __init__.py │ └── util.py ├── routers │ ├── __init__.py │ ├── accounts.py │ ├── auth.py │ ├── html.py │ ├── package_maintainer.py │ ├── packages.py │ ├── pkgbase.py │ ├── requests.py │ ├── rpc.py │ ├── rss.py │ └── sso.py ├── rpc.py ├── schema.py ├── scripts │ ├── __init__.py │ ├── adduser.py │ ├── aurblup.py │ ├── config.py │ ├── git_archive.py │ ├── mkpkglists.py │ ├── notify.py │ ├── pkgmaint.py │ ├── popupdate.py │ ├── rendercomment.py │ ├── usermaint.py │ └── votereminder.py ├── spawn.py ├── statistics.py ├── templates.py ├── testing │ ├── __init__.py │ ├── alpm.py │ ├── email.py │ ├── filelock.py │ ├── git.py │ ├── html.py │ ├── prometheus.py │ ├── requests.py │ └── smtp.py ├── time.py ├── users │ ├── __init__.py │ ├── update.py │ ├── util.py │ └── validate.py └── util.py ├── cache └── .gitkeep ├── ci └── tf │ ├── .terraform.lock.hcl │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── cliff.toml ├── conf ├── cgitrc.proto ├── config.defaults ├── config.dev ├── fcgiwrap.service.proto └── fcgiwrap.socket.proto ├── doc ├── Makefile ├── docker.md ├── git-archive.md ├── git-interface.txt ├── i18n.md ├── maintenance.txt ├── repos │ ├── metadata-repo.md │ ├── pkgbases-repo.md │ ├── pkgnames-repo.md │ └── users-repo.md ├── rpc.txt ├── specs │ ├── metadata.md │ ├── pkgbases.md │ ├── pkgnames.md │ ├── popularity.md │ └── users.md ├── sso.txt └── web-auth.md ├── docker-compose.aur-dev.yml ├── docker-compose.override.yml ├── docker-compose.yml ├── docker ├── README.md ├── ca-entrypoint.sh ├── cgit-entrypoint.sh ├── config │ ├── aurweb-cron │ ├── grafana │ │ └── datasources │ │ │ └── datasource.yml │ ├── nginx.conf │ ├── prometheus.yml │ └── tempo.yml ├── cron-entrypoint.sh ├── fastapi-entrypoint.sh ├── git-entrypoint.sh ├── health │ ├── ca.sh │ ├── cgit.sh │ ├── fastapi.sh │ ├── mariadb.sh │ ├── nginx.sh │ ├── prometheus.sh │ ├── redis.sh │ ├── smartgit.sh │ ├── sshd.sh │ └── tempo.sh ├── hypercorn.env ├── localhost.ext ├── logging.conf ├── mariadb-entrypoint.sh ├── mariadb-init-entrypoint.sh ├── nginx-entrypoint.sh ├── redis-entrypoint.sh ├── scripts │ ├── install-deps.sh │ ├── install-python-deps.sh │ ├── run-ca.sh │ ├── run-cgit.sh │ ├── run-cron.sh │ ├── run-fastapi.sh │ ├── run-nginx.sh │ ├── run-pytests.sh │ ├── run-redis.sh │ ├── run-sharness.sh │ ├── run-smartgit.sh │ ├── run-sshd.sh │ ├── run-tests.sh │ └── update-step-config ├── sharness-entrypoint.sh ├── smartgit-entrypoint.sh ├── test-mysql-entrypoint.sh └── tests-entrypoint.sh ├── examples ├── aurweb-git-auth.sh ├── aurweb-git-serve.sh ├── aurweb-git-update.sh ├── aurweb.service └── jsonp.html ├── gunicorn.conf.py ├── logging.conf ├── logging.prod.conf ├── logging.test.conf ├── logs └── .gitkeep ├── migrations ├── README ├── env.py ├── script.py.mako └── versions │ ├── 38e5b9982eea_add_indicies_on_packagebases_for_rss_.py │ ├── 56e2ce8e2ffa_utf8mb4_charset_and_collation.py │ ├── 6441d3b65270_add_popularityupdated_to_packagebase.py │ ├── 6a64dd126029_rename_tu_to_package_maintainer.py │ ├── 7d65d35fae45_rename_tu_tables_columns.py │ ├── 9e3158957fd7_add_packagekeyword_packagebaseuid.py │ ├── be7adae47ac3_upgrade_voteinfo_integers.py │ ├── c5a6a9b661a0_add_index_on_packagebases_popularity_.py │ ├── d64e5571bc8d_fix_pkgvote_votets.py │ ├── e4e49ffce091_add_hidedeletedcomments_to_user.py │ ├── ef39fcd6e1cd_add_sso_account_id_in_table_users.py │ └── f47cad5d6d03_initial_revision.py ├── po ├── Makefile ├── ar.po ├── ast.po ├── aurweb.pot ├── az.po ├── az_AZ.po ├── bg.po ├── ca.po ├── ca_ES.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── es.po ├── es_419.po ├── et.po ├── fi.po ├── fi_FI.po ├── fr.po ├── he.po ├── hi_IN.po ├── hr.po ├── hu.po ├── id.po ├── id_ID.po ├── is.po ├── it.po ├── ja.po ├── ko.po ├── lt.po ├── nb.po ├── nb_NO.po ├── nl.po ├── pl.po ├── pt.po ├── pt_BR.po ├── pt_PT.po ├── ro.po ├── ru.po ├── sk.po ├── sr.po ├── sr_RS.po ├── sv_SE.po ├── tr.po ├── uk.po ├── vi.po ├── zh.po ├── zh_CN.po └── zh_TW.po ├── poetry.lock ├── pyproject.toml ├── renovate.json ├── schema └── gendummydata.py ├── static ├── css │ ├── archnavbar │ │ ├── archlogo.png │ │ ├── archnavbar.css │ │ └── aurlogo.png │ ├── archweb.css │ ├── aurweb.css │ └── cgit.css ├── html │ └── cgit │ │ ├── footer.html │ │ └── header.html ├── images │ ├── ICON-LICENSE │ ├── action-undo.min.svg │ ├── action-undo.svg │ ├── ajax-loader.gif │ ├── favicon.ico │ ├── pencil.min.svg │ ├── pencil.svg │ ├── pin.min.svg │ ├── pin.svg │ ├── rss.svg │ ├── unpin.min.svg │ ├── unpin.svg │ ├── x.min.svg │ └── x.svg ├── js │ ├── comment-edit.js │ ├── copy.js │ ├── typeahead-home.js │ ├── typeahead-pkgbase-merge.js │ ├── typeahead-pkgbase-request.js │ ├── typeahead-requests.js │ └── typeahead.js └── opensearch.xml ├── templates ├── account │ ├── comments.html │ ├── delete.html │ ├── edit.html │ ├── index.html │ ├── search.html │ └── show.html ├── addvote.html ├── dashboard.html ├── errors │ ├── 404.html │ ├── 500.html │ ├── 503.html │ └── detail.html ├── home.html ├── index.html ├── login.html ├── package-maintainer │ ├── index.html │ └── show.html ├── packages │ ├── index.html │ └── show.html ├── partials │ ├── account │ │ ├── comment.html │ │ └── results.html │ ├── account_form.html │ ├── archdev-navbar.html │ ├── body.html │ ├── comment_actions.html │ ├── comment_content.html │ ├── error.html │ ├── footer.html │ ├── head.html │ ├── layout.html │ ├── meta.html │ ├── navbar.html │ ├── package-maintainer │ │ ├── last_votes.html │ │ ├── proposal │ │ │ ├── details.html │ │ │ ├── form.html │ │ │ └── voters.html │ │ └── proposals.html │ ├── packages │ │ ├── actions.html │ │ ├── comment.html │ │ ├── comment_form.html │ │ ├── comments.html │ │ ├── details.html │ │ ├── package_metadata.html │ │ ├── pkgbase_metadata.html │ │ ├── requests.html │ │ ├── results.html │ │ ├── search.html │ │ ├── search_actions.html │ │ ├── search_results.html │ │ ├── search_widget.html │ │ ├── statistics.html │ │ └── updates.html │ ├── pager.html │ ├── set_lang.html │ ├── statistics.html │ └── support.html ├── passreset.html ├── pkgbase │ ├── comaintainers.html │ ├── comments │ │ └── edit.html │ ├── delete.html │ ├── disown.html │ ├── flag-comment.html │ ├── flag.html │ ├── index.html │ ├── merge.html │ ├── request.html │ └── voters.html ├── register.html ├── requests.html ├── requests │ └── close.html ├── testing │ ├── PKGBUILD.j2 │ ├── SRCINFO.j2 │ └── alpm_package.j2 └── tos │ └── index.html ├── test ├── Makefile ├── README.md ├── __init__.py ├── conftest.py ├── scripts │ └── cover ├── setup.sh ├── sharness.sh ├── t1100-git-auth.t ├── t1200-git-serve.t ├── t1300-git-update.t ├── test_accepted_term.py ├── test_account_type.py ├── test_accounts_routes.py ├── test_adduser.py ├── test_api_rate_limit.py ├── test_asgi.py ├── test_aurblup.py ├── test_auth.py ├── test_auth_routes.py ├── test_ban.py ├── test_cache.py ├── test_captcha.py ├── test_config.py ├── test_cookies.py ├── test_db.py ├── test_defaults.py ├── test_dependency_type.py ├── test_email.py ├── test_exceptions.py ├── test_filelock.py ├── test_filters.py ├── test_git_archives.py ├── test_git_update.py ├── test_group.py ├── test_homepage.py ├── test_html.py ├── test_initdb.py ├── test_l10n.py ├── test_license.py ├── test_logging.py ├── test_metrics.py ├── test_mkpkglists.py ├── test_notify.py ├── test_official_provider.py ├── test_package.py ├── test_package_base.py ├── test_package_blacklist.py ├── test_package_comaintainer.py ├── test_package_comment.py ├── test_package_dependency.py ├── test_package_group.py ├── test_package_keyword.py ├── test_package_license.py ├── test_package_maintainer_routes.py ├── test_package_notification.py ├── test_package_relation.py ├── test_package_request.py ├── test_package_source.py ├── test_package_vote.py ├── test_packages_routes.py ├── test_packages_util.py ├── test_pkgbase_routes.py ├── test_pkgmaint.py ├── test_pm_vote.py ├── test_popupdate.py ├── test_ratelimit.py ├── test_redis.py ├── test_relation_type.py ├── test_rendercomment.py ├── test_request_type.py ├── test_requests.py ├── test_routes.py ├── test_rpc.py ├── test_rss.py ├── test_session.py ├── test_spawn.py ├── test_ssh_pub_key.py ├── test_statistics.py ├── test_templates.py ├── test_term.py ├── test_time.py ├── test_user.py ├── test_usermaint.py ├── test_util.py ├── test_voteinfo.py └── test_votereminder.py ├── upgrading ├── 1.2.10.txt ├── 1.3.0.txt ├── 1.5.2.txt ├── 1.5.3.txt ├── 1.7.0.txt ├── 1.8.0.txt ├── 1.8.1.txt ├── 1.8.2.txt ├── 1.9.0.txt ├── 1.9.1.txt ├── 2.0.0.txt ├── 2.1.0.txt ├── 2.2.0.txt ├── 2.3.0.txt ├── 3.0.0.txt ├── 3.1.0.txt ├── 3.2.0.txt ├── 3.4.0.txt ├── 3.5.0.txt ├── 4.0.0.txt ├── 4.1.0.txt ├── 4.2.0.txt ├── 4.2.1.txt ├── 4.3.0.txt ├── 4.4.0.txt ├── 4.4.1.txt ├── 4.5.0.txt ├── 4.6.0.txt ├── 4.7.0.txt ├── 5.x.x.txt ├── longerpkgname.txt └── post-checkout └── util ├── fix-coverage └── sendmail /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/.env -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # style: Run pre-commit 2 | 9c6c13b78a30cb9d800043410799e29631f803d2 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/issue_templates/Bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/.gitlab/issue_templates/Bug.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/Feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/.gitlab/issue_templates/Feature.md -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSES/starlette_exporter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/LICENSES/starlette_exporter -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/README.md -------------------------------------------------------------------------------- /TESTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/TESTING -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/alembic.ini -------------------------------------------------------------------------------- /aurweb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aurweb/archives/__init__.py: -------------------------------------------------------------------------------- 1 | # aurweb.archives 2 | -------------------------------------------------------------------------------- /aurweb/archives/spec/__init__.py: -------------------------------------------------------------------------------- 1 | # aurweb.archives.spec 2 | -------------------------------------------------------------------------------- /aurweb/archives/spec/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/archives/spec/base.py -------------------------------------------------------------------------------- /aurweb/archives/spec/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/archives/spec/metadata.py -------------------------------------------------------------------------------- /aurweb/archives/spec/pkgbases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/archives/spec/pkgbases.py -------------------------------------------------------------------------------- /aurweb/archives/spec/pkgnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/archives/spec/pkgnames.py -------------------------------------------------------------------------------- /aurweb/archives/spec/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/archives/spec/users.py -------------------------------------------------------------------------------- /aurweb/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/asgi.py -------------------------------------------------------------------------------- /aurweb/aur_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/aur_logging.py -------------------------------------------------------------------------------- /aurweb/aur_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/aur_redis.py -------------------------------------------------------------------------------- /aurweb/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/auth/__init__.py -------------------------------------------------------------------------------- /aurweb/auth/creds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/auth/creds.py -------------------------------------------------------------------------------- /aurweb/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/benchmark.py -------------------------------------------------------------------------------- /aurweb/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/cache.py -------------------------------------------------------------------------------- /aurweb/captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/captcha.py -------------------------------------------------------------------------------- /aurweb/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/config.py -------------------------------------------------------------------------------- /aurweb/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/cookies.py -------------------------------------------------------------------------------- /aurweb/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/db.py -------------------------------------------------------------------------------- /aurweb/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/defaults.py -------------------------------------------------------------------------------- /aurweb/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/exceptions.py -------------------------------------------------------------------------------- /aurweb/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/filters.py -------------------------------------------------------------------------------- /aurweb/git/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aurweb/git/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/git/auth.py -------------------------------------------------------------------------------- /aurweb/git/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/git/serve.py -------------------------------------------------------------------------------- /aurweb/git/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/git/update.py -------------------------------------------------------------------------------- /aurweb/initdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/initdb.py -------------------------------------------------------------------------------- /aurweb/l10n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/l10n.py -------------------------------------------------------------------------------- /aurweb/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/__init__.py -------------------------------------------------------------------------------- /aurweb/models/accepted_term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/accepted_term.py -------------------------------------------------------------------------------- /aurweb/models/account_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/account_type.py -------------------------------------------------------------------------------- /aurweb/models/api_rate_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/api_rate_limit.py -------------------------------------------------------------------------------- /aurweb/models/ban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/ban.py -------------------------------------------------------------------------------- /aurweb/models/declarative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/declarative.py -------------------------------------------------------------------------------- /aurweb/models/dependency_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/dependency_type.py -------------------------------------------------------------------------------- /aurweb/models/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/group.py -------------------------------------------------------------------------------- /aurweb/models/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/license.py -------------------------------------------------------------------------------- /aurweb/models/official_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/official_provider.py -------------------------------------------------------------------------------- /aurweb/models/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/package.py -------------------------------------------------------------------------------- /aurweb/models/package_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/package_base.py -------------------------------------------------------------------------------- /aurweb/models/package_blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/package_blacklist.py -------------------------------------------------------------------------------- /aurweb/models/package_comaintainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/package_comaintainer.py -------------------------------------------------------------------------------- /aurweb/models/package_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/package_comment.py -------------------------------------------------------------------------------- /aurweb/models/package_dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/package_dependency.py -------------------------------------------------------------------------------- /aurweb/models/package_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/package_group.py -------------------------------------------------------------------------------- /aurweb/models/package_keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/package_keyword.py -------------------------------------------------------------------------------- /aurweb/models/package_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/package_license.py -------------------------------------------------------------------------------- /aurweb/models/package_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/package_notification.py -------------------------------------------------------------------------------- /aurweb/models/package_relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/package_relation.py -------------------------------------------------------------------------------- /aurweb/models/package_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/package_request.py -------------------------------------------------------------------------------- /aurweb/models/package_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/package_source.py -------------------------------------------------------------------------------- /aurweb/models/package_vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/package_vote.py -------------------------------------------------------------------------------- /aurweb/models/relation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/relation_type.py -------------------------------------------------------------------------------- /aurweb/models/request_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/request_type.py -------------------------------------------------------------------------------- /aurweb/models/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/session.py -------------------------------------------------------------------------------- /aurweb/models/ssh_pub_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/ssh_pub_key.py -------------------------------------------------------------------------------- /aurweb/models/term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/term.py -------------------------------------------------------------------------------- /aurweb/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/user.py -------------------------------------------------------------------------------- /aurweb/models/vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/vote.py -------------------------------------------------------------------------------- /aurweb/models/voteinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/models/voteinfo.py -------------------------------------------------------------------------------- /aurweb/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aurweb/packages/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/packages/requests.py -------------------------------------------------------------------------------- /aurweb/packages/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/packages/search.py -------------------------------------------------------------------------------- /aurweb/packages/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/packages/util.py -------------------------------------------------------------------------------- /aurweb/pkgbase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aurweb/pkgbase/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/pkgbase/actions.py -------------------------------------------------------------------------------- /aurweb/pkgbase/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/pkgbase/util.py -------------------------------------------------------------------------------- /aurweb/pkgbase/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/pkgbase/validate.py -------------------------------------------------------------------------------- /aurweb/prometheus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/prometheus.py -------------------------------------------------------------------------------- /aurweb/ratelimit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/ratelimit.py -------------------------------------------------------------------------------- /aurweb/requests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aurweb/requests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/requests/util.py -------------------------------------------------------------------------------- /aurweb/routers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/routers/__init__.py -------------------------------------------------------------------------------- /aurweb/routers/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/routers/accounts.py -------------------------------------------------------------------------------- /aurweb/routers/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/routers/auth.py -------------------------------------------------------------------------------- /aurweb/routers/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/routers/html.py -------------------------------------------------------------------------------- /aurweb/routers/package_maintainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/routers/package_maintainer.py -------------------------------------------------------------------------------- /aurweb/routers/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/routers/packages.py -------------------------------------------------------------------------------- /aurweb/routers/pkgbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/routers/pkgbase.py -------------------------------------------------------------------------------- /aurweb/routers/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/routers/requests.py -------------------------------------------------------------------------------- /aurweb/routers/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/routers/rpc.py -------------------------------------------------------------------------------- /aurweb/routers/rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/routers/rss.py -------------------------------------------------------------------------------- /aurweb/routers/sso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/routers/sso.py -------------------------------------------------------------------------------- /aurweb/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/rpc.py -------------------------------------------------------------------------------- /aurweb/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/schema.py -------------------------------------------------------------------------------- /aurweb/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aurweb/scripts/adduser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/scripts/adduser.py -------------------------------------------------------------------------------- /aurweb/scripts/aurblup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/scripts/aurblup.py -------------------------------------------------------------------------------- /aurweb/scripts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/scripts/config.py -------------------------------------------------------------------------------- /aurweb/scripts/git_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/scripts/git_archive.py -------------------------------------------------------------------------------- /aurweb/scripts/mkpkglists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/scripts/mkpkglists.py -------------------------------------------------------------------------------- /aurweb/scripts/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/scripts/notify.py -------------------------------------------------------------------------------- /aurweb/scripts/pkgmaint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/scripts/pkgmaint.py -------------------------------------------------------------------------------- /aurweb/scripts/popupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/scripts/popupdate.py -------------------------------------------------------------------------------- /aurweb/scripts/rendercomment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/scripts/rendercomment.py -------------------------------------------------------------------------------- /aurweb/scripts/usermaint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/scripts/usermaint.py -------------------------------------------------------------------------------- /aurweb/scripts/votereminder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/scripts/votereminder.py -------------------------------------------------------------------------------- /aurweb/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/spawn.py -------------------------------------------------------------------------------- /aurweb/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/statistics.py -------------------------------------------------------------------------------- /aurweb/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/templates.py -------------------------------------------------------------------------------- /aurweb/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/testing/__init__.py -------------------------------------------------------------------------------- /aurweb/testing/alpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/testing/alpm.py -------------------------------------------------------------------------------- /aurweb/testing/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/testing/email.py -------------------------------------------------------------------------------- /aurweb/testing/filelock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/testing/filelock.py -------------------------------------------------------------------------------- /aurweb/testing/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/testing/git.py -------------------------------------------------------------------------------- /aurweb/testing/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/testing/html.py -------------------------------------------------------------------------------- /aurweb/testing/prometheus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/testing/prometheus.py -------------------------------------------------------------------------------- /aurweb/testing/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/testing/requests.py -------------------------------------------------------------------------------- /aurweb/testing/smtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/testing/smtp.py -------------------------------------------------------------------------------- /aurweb/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/time.py -------------------------------------------------------------------------------- /aurweb/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aurweb/users/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/users/update.py -------------------------------------------------------------------------------- /aurweb/users/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/users/util.py -------------------------------------------------------------------------------- /aurweb/users/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/users/validate.py -------------------------------------------------------------------------------- /aurweb/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/aurweb/util.py -------------------------------------------------------------------------------- /cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/tf/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/ci/tf/.terraform.lock.hcl -------------------------------------------------------------------------------- /ci/tf/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/ci/tf/main.tf -------------------------------------------------------------------------------- /ci/tf/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/ci/tf/terraform.tfvars -------------------------------------------------------------------------------- /ci/tf/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/ci/tf/variables.tf -------------------------------------------------------------------------------- /ci/tf/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/ci/tf/versions.tf -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/cliff.toml -------------------------------------------------------------------------------- /conf/cgitrc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/conf/cgitrc.proto -------------------------------------------------------------------------------- /conf/config.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/conf/config.defaults -------------------------------------------------------------------------------- /conf/config.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/conf/config.dev -------------------------------------------------------------------------------- /conf/fcgiwrap.service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/conf/fcgiwrap.service.proto -------------------------------------------------------------------------------- /conf/fcgiwrap.socket.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/conf/fcgiwrap.socket.proto -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/docker.md -------------------------------------------------------------------------------- /doc/git-archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/git-archive.md -------------------------------------------------------------------------------- /doc/git-interface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/git-interface.txt -------------------------------------------------------------------------------- /doc/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/i18n.md -------------------------------------------------------------------------------- /doc/maintenance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/maintenance.txt -------------------------------------------------------------------------------- /doc/repos/metadata-repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/repos/metadata-repo.md -------------------------------------------------------------------------------- /doc/repos/pkgbases-repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/repos/pkgbases-repo.md -------------------------------------------------------------------------------- /doc/repos/pkgnames-repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/repos/pkgnames-repo.md -------------------------------------------------------------------------------- /doc/repos/users-repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/repos/users-repo.md -------------------------------------------------------------------------------- /doc/rpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/rpc.txt -------------------------------------------------------------------------------- /doc/specs/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/specs/metadata.md -------------------------------------------------------------------------------- /doc/specs/pkgbases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/specs/pkgbases.md -------------------------------------------------------------------------------- /doc/specs/pkgnames.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/specs/pkgnames.md -------------------------------------------------------------------------------- /doc/specs/popularity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/specs/popularity.md -------------------------------------------------------------------------------- /doc/specs/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/specs/users.md -------------------------------------------------------------------------------- /doc/sso.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/sso.txt -------------------------------------------------------------------------------- /doc/web-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/doc/web-auth.md -------------------------------------------------------------------------------- /docker-compose.aur-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker-compose.aur-dev.yml -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/ca-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/ca-entrypoint.sh -------------------------------------------------------------------------------- /docker/cgit-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/cgit-entrypoint.sh -------------------------------------------------------------------------------- /docker/config/aurweb-cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/config/aurweb-cron -------------------------------------------------------------------------------- /docker/config/grafana/datasources/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/config/grafana/datasources/datasource.yml -------------------------------------------------------------------------------- /docker/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/config/nginx.conf -------------------------------------------------------------------------------- /docker/config/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/config/prometheus.yml -------------------------------------------------------------------------------- /docker/config/tempo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/config/tempo.yml -------------------------------------------------------------------------------- /docker/cron-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/cron-entrypoint.sh -------------------------------------------------------------------------------- /docker/fastapi-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/fastapi-entrypoint.sh -------------------------------------------------------------------------------- /docker/git-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/git-entrypoint.sh -------------------------------------------------------------------------------- /docker/health/ca.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec curl -qkiI 'https://localhost:8443/' 3 | -------------------------------------------------------------------------------- /docker/health/cgit.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec printf "" >>/dev/tcp/127.0.0.1/${1} 3 | -------------------------------------------------------------------------------- /docker/health/fastapi.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec pgrep "$1" 3 | -------------------------------------------------------------------------------- /docker/health/mariadb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec mariadb-admin ping --silent 3 | -------------------------------------------------------------------------------- /docker/health/nginx.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec curl -k -q https://localhost:8444 3 | -------------------------------------------------------------------------------- /docker/health/prometheus.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec wget -q http://prometheus:9090/status -O /dev/null 3 | -------------------------------------------------------------------------------- /docker/health/redis.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec pgrep redis-server 3 | -------------------------------------------------------------------------------- /docker/health/smartgit.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec pgrep uwsgi 3 | -------------------------------------------------------------------------------- /docker/health/sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/health/sshd.sh -------------------------------------------------------------------------------- /docker/health/tempo.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec wget -q http://tempo:3200/status -O /dev/null 3 | -------------------------------------------------------------------------------- /docker/hypercorn.env: -------------------------------------------------------------------------------- 1 | FASTAPI_BACKEND="hypercorn" 2 | -------------------------------------------------------------------------------- /docker/localhost.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/localhost.ext -------------------------------------------------------------------------------- /docker/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/logging.conf -------------------------------------------------------------------------------- /docker/mariadb-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/mariadb-entrypoint.sh -------------------------------------------------------------------------------- /docker/mariadb-init-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/mariadb-init-entrypoint.sh -------------------------------------------------------------------------------- /docker/nginx-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/nginx-entrypoint.sh -------------------------------------------------------------------------------- /docker/redis-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/redis-entrypoint.sh -------------------------------------------------------------------------------- /docker/scripts/install-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/scripts/install-deps.sh -------------------------------------------------------------------------------- /docker/scripts/install-python-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/scripts/install-python-deps.sh -------------------------------------------------------------------------------- /docker/scripts/run-ca.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/scripts/run-ca.sh -------------------------------------------------------------------------------- /docker/scripts/run-cgit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/scripts/run-cgit.sh -------------------------------------------------------------------------------- /docker/scripts/run-cron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/scripts/run-cron.sh -------------------------------------------------------------------------------- /docker/scripts/run-fastapi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/scripts/run-fastapi.sh -------------------------------------------------------------------------------- /docker/scripts/run-nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/scripts/run-nginx.sh -------------------------------------------------------------------------------- /docker/scripts/run-pytests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/scripts/run-pytests.sh -------------------------------------------------------------------------------- /docker/scripts/run-redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/scripts/run-redis.sh -------------------------------------------------------------------------------- /docker/scripts/run-sharness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/scripts/run-sharness.sh -------------------------------------------------------------------------------- /docker/scripts/run-smartgit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/scripts/run-smartgit.sh -------------------------------------------------------------------------------- /docker/scripts/run-sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/scripts/run-sshd.sh -------------------------------------------------------------------------------- /docker/scripts/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/scripts/run-tests.sh -------------------------------------------------------------------------------- /docker/scripts/update-step-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/scripts/update-step-config -------------------------------------------------------------------------------- /docker/sharness-entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -eou pipefail 3 | 4 | exec "$@" 5 | -------------------------------------------------------------------------------- /docker/smartgit-entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -eou pipefail 3 | 4 | exec "$@" 5 | -------------------------------------------------------------------------------- /docker/test-mysql-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/test-mysql-entrypoint.sh -------------------------------------------------------------------------------- /docker/tests-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/docker/tests-entrypoint.sh -------------------------------------------------------------------------------- /examples/aurweb-git-auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/examples/aurweb-git-auth.sh -------------------------------------------------------------------------------- /examples/aurweb-git-serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/examples/aurweb-git-serve.sh -------------------------------------------------------------------------------- /examples/aurweb-git-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/examples/aurweb-git-update.sh -------------------------------------------------------------------------------- /examples/aurweb.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/examples/aurweb.service -------------------------------------------------------------------------------- /examples/jsonp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/examples/jsonp.html -------------------------------------------------------------------------------- /gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/gunicorn.conf.py -------------------------------------------------------------------------------- /logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/logging.conf -------------------------------------------------------------------------------- /logging.prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/logging.prod.conf -------------------------------------------------------------------------------- /logging.test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/logging.test.conf -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/migrations/README -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/38e5b9982eea_add_indicies_on_packagebases_for_rss_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/migrations/versions/38e5b9982eea_add_indicies_on_packagebases_for_rss_.py -------------------------------------------------------------------------------- /migrations/versions/56e2ce8e2ffa_utf8mb4_charset_and_collation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/migrations/versions/56e2ce8e2ffa_utf8mb4_charset_and_collation.py -------------------------------------------------------------------------------- /migrations/versions/6441d3b65270_add_popularityupdated_to_packagebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/migrations/versions/6441d3b65270_add_popularityupdated_to_packagebase.py -------------------------------------------------------------------------------- /migrations/versions/6a64dd126029_rename_tu_to_package_maintainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/migrations/versions/6a64dd126029_rename_tu_to_package_maintainer.py -------------------------------------------------------------------------------- /migrations/versions/7d65d35fae45_rename_tu_tables_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/migrations/versions/7d65d35fae45_rename_tu_tables_columns.py -------------------------------------------------------------------------------- /migrations/versions/9e3158957fd7_add_packagekeyword_packagebaseuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/migrations/versions/9e3158957fd7_add_packagekeyword_packagebaseuid.py -------------------------------------------------------------------------------- /migrations/versions/be7adae47ac3_upgrade_voteinfo_integers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/migrations/versions/be7adae47ac3_upgrade_voteinfo_integers.py -------------------------------------------------------------------------------- /migrations/versions/c5a6a9b661a0_add_index_on_packagebases_popularity_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/migrations/versions/c5a6a9b661a0_add_index_on_packagebases_popularity_.py -------------------------------------------------------------------------------- /migrations/versions/d64e5571bc8d_fix_pkgvote_votets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/migrations/versions/d64e5571bc8d_fix_pkgvote_votets.py -------------------------------------------------------------------------------- /migrations/versions/e4e49ffce091_add_hidedeletedcomments_to_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/migrations/versions/e4e49ffce091_add_hidedeletedcomments_to_user.py -------------------------------------------------------------------------------- /migrations/versions/ef39fcd6e1cd_add_sso_account_id_in_table_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/migrations/versions/ef39fcd6e1cd_add_sso_account_id_in_table_users.py -------------------------------------------------------------------------------- /migrations/versions/f47cad5d6d03_initial_revision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/migrations/versions/f47cad5d6d03_initial_revision.py -------------------------------------------------------------------------------- /po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/Makefile -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/aurweb.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/aurweb.pot -------------------------------------------------------------------------------- /po/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/az.po -------------------------------------------------------------------------------- /po/az_AZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/az_AZ.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/ca_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/ca_ES.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/el.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/es.po -------------------------------------------------------------------------------- /po/es_419.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/es_419.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/et.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fi_FI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/fi_FI.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/hi_IN.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/id.po -------------------------------------------------------------------------------- /po/id_ID.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/id_ID.po -------------------------------------------------------------------------------- /po/is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/is.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nb_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/nb_NO.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/pt_PT.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sr_RS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/sr_RS.po -------------------------------------------------------------------------------- /po/sv_SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/sv_SE.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/zh.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/renovate.json -------------------------------------------------------------------------------- /schema/gendummydata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/schema/gendummydata.py -------------------------------------------------------------------------------- /static/css/archnavbar/archlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/css/archnavbar/archlogo.png -------------------------------------------------------------------------------- /static/css/archnavbar/archnavbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/css/archnavbar/archnavbar.css -------------------------------------------------------------------------------- /static/css/archnavbar/aurlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/css/archnavbar/aurlogo.png -------------------------------------------------------------------------------- /static/css/archweb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/css/archweb.css -------------------------------------------------------------------------------- /static/css/aurweb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/css/aurweb.css -------------------------------------------------------------------------------- /static/css/cgit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/css/cgit.css -------------------------------------------------------------------------------- /static/html/cgit/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/html/cgit/footer.html -------------------------------------------------------------------------------- /static/html/cgit/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/html/cgit/header.html -------------------------------------------------------------------------------- /static/images/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/images/ICON-LICENSE -------------------------------------------------------------------------------- /static/images/action-undo.min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/images/action-undo.min.svg -------------------------------------------------------------------------------- /static/images/action-undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/images/action-undo.svg -------------------------------------------------------------------------------- /static/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/images/ajax-loader.gif -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/images/favicon.ico -------------------------------------------------------------------------------- /static/images/pencil.min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/images/pencil.min.svg -------------------------------------------------------------------------------- /static/images/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/images/pencil.svg -------------------------------------------------------------------------------- /static/images/pin.min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/images/pin.min.svg -------------------------------------------------------------------------------- /static/images/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/images/pin.svg -------------------------------------------------------------------------------- /static/images/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/images/rss.svg -------------------------------------------------------------------------------- /static/images/unpin.min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/images/unpin.min.svg -------------------------------------------------------------------------------- /static/images/unpin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/images/unpin.svg -------------------------------------------------------------------------------- /static/images/x.min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/images/x.min.svg -------------------------------------------------------------------------------- /static/images/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/images/x.svg -------------------------------------------------------------------------------- /static/js/comment-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/js/comment-edit.js -------------------------------------------------------------------------------- /static/js/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/js/copy.js -------------------------------------------------------------------------------- /static/js/typeahead-home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/js/typeahead-home.js -------------------------------------------------------------------------------- /static/js/typeahead-pkgbase-merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/js/typeahead-pkgbase-merge.js -------------------------------------------------------------------------------- /static/js/typeahead-pkgbase-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/js/typeahead-pkgbase-request.js -------------------------------------------------------------------------------- /static/js/typeahead-requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/js/typeahead-requests.js -------------------------------------------------------------------------------- /static/js/typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/js/typeahead.js -------------------------------------------------------------------------------- /static/opensearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/static/opensearch.xml -------------------------------------------------------------------------------- /templates/account/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/account/comments.html -------------------------------------------------------------------------------- /templates/account/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/account/delete.html -------------------------------------------------------------------------------- /templates/account/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/account/edit.html -------------------------------------------------------------------------------- /templates/account/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/account/index.html -------------------------------------------------------------------------------- /templates/account/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/account/search.html -------------------------------------------------------------------------------- /templates/account/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/account/show.html -------------------------------------------------------------------------------- /templates/addvote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/addvote.html -------------------------------------------------------------------------------- /templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/dashboard.html -------------------------------------------------------------------------------- /templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/errors/404.html -------------------------------------------------------------------------------- /templates/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/errors/500.html -------------------------------------------------------------------------------- /templates/errors/503.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/errors/503.html -------------------------------------------------------------------------------- /templates/errors/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/errors/detail.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/package-maintainer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/package-maintainer/index.html -------------------------------------------------------------------------------- /templates/package-maintainer/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/package-maintainer/show.html -------------------------------------------------------------------------------- /templates/packages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/packages/index.html -------------------------------------------------------------------------------- /templates/packages/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/packages/show.html -------------------------------------------------------------------------------- /templates/partials/account/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/account/comment.html -------------------------------------------------------------------------------- /templates/partials/account/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/account/results.html -------------------------------------------------------------------------------- /templates/partials/account_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/account_form.html -------------------------------------------------------------------------------- /templates/partials/archdev-navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/archdev-navbar.html -------------------------------------------------------------------------------- /templates/partials/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/body.html -------------------------------------------------------------------------------- /templates/partials/comment_actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/comment_actions.html -------------------------------------------------------------------------------- /templates/partials/comment_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/comment_content.html -------------------------------------------------------------------------------- /templates/partials/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/error.html -------------------------------------------------------------------------------- /templates/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/footer.html -------------------------------------------------------------------------------- /templates/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/head.html -------------------------------------------------------------------------------- /templates/partials/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/layout.html -------------------------------------------------------------------------------- /templates/partials/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/meta.html -------------------------------------------------------------------------------- /templates/partials/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/navbar.html -------------------------------------------------------------------------------- /templates/partials/package-maintainer/last_votes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/package-maintainer/last_votes.html -------------------------------------------------------------------------------- /templates/partials/package-maintainer/proposal/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/package-maintainer/proposal/details.html -------------------------------------------------------------------------------- /templates/partials/package-maintainer/proposal/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/package-maintainer/proposal/form.html -------------------------------------------------------------------------------- /templates/partials/package-maintainer/proposal/voters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/package-maintainer/proposal/voters.html -------------------------------------------------------------------------------- /templates/partials/package-maintainer/proposals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/package-maintainer/proposals.html -------------------------------------------------------------------------------- /templates/partials/packages/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/packages/actions.html -------------------------------------------------------------------------------- /templates/partials/packages/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/packages/comment.html -------------------------------------------------------------------------------- /templates/partials/packages/comment_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/packages/comment_form.html -------------------------------------------------------------------------------- /templates/partials/packages/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/packages/comments.html -------------------------------------------------------------------------------- /templates/partials/packages/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/packages/details.html -------------------------------------------------------------------------------- /templates/partials/packages/package_metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/packages/package_metadata.html -------------------------------------------------------------------------------- /templates/partials/packages/pkgbase_metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/packages/pkgbase_metadata.html -------------------------------------------------------------------------------- /templates/partials/packages/requests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/packages/requests.html -------------------------------------------------------------------------------- /templates/partials/packages/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/packages/results.html -------------------------------------------------------------------------------- /templates/partials/packages/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/packages/search.html -------------------------------------------------------------------------------- /templates/partials/packages/search_actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/packages/search_actions.html -------------------------------------------------------------------------------- /templates/partials/packages/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/packages/search_results.html -------------------------------------------------------------------------------- /templates/partials/packages/search_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/packages/search_widget.html -------------------------------------------------------------------------------- /templates/partials/packages/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/packages/statistics.html -------------------------------------------------------------------------------- /templates/partials/packages/updates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/packages/updates.html -------------------------------------------------------------------------------- /templates/partials/pager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/pager.html -------------------------------------------------------------------------------- /templates/partials/set_lang.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/set_lang.html -------------------------------------------------------------------------------- /templates/partials/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/statistics.html -------------------------------------------------------------------------------- /templates/partials/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/partials/support.html -------------------------------------------------------------------------------- /templates/passreset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/passreset.html -------------------------------------------------------------------------------- /templates/pkgbase/comaintainers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/pkgbase/comaintainers.html -------------------------------------------------------------------------------- /templates/pkgbase/comments/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/pkgbase/comments/edit.html -------------------------------------------------------------------------------- /templates/pkgbase/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/pkgbase/delete.html -------------------------------------------------------------------------------- /templates/pkgbase/disown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/pkgbase/disown.html -------------------------------------------------------------------------------- /templates/pkgbase/flag-comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/pkgbase/flag-comment.html -------------------------------------------------------------------------------- /templates/pkgbase/flag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/pkgbase/flag.html -------------------------------------------------------------------------------- /templates/pkgbase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/pkgbase/index.html -------------------------------------------------------------------------------- /templates/pkgbase/merge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/pkgbase/merge.html -------------------------------------------------------------------------------- /templates/pkgbase/request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/pkgbase/request.html -------------------------------------------------------------------------------- /templates/pkgbase/voters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/pkgbase/voters.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/requests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/requests.html -------------------------------------------------------------------------------- /templates/requests/close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/requests/close.html -------------------------------------------------------------------------------- /templates/testing/PKGBUILD.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/testing/PKGBUILD.j2 -------------------------------------------------------------------------------- /templates/testing/SRCINFO.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/testing/SRCINFO.j2 -------------------------------------------------------------------------------- /templates/testing/alpm_package.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/testing/alpm_package.j2 -------------------------------------------------------------------------------- /templates/tos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/templates/tos/index.html -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/README.md -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/scripts/cover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/scripts/cover -------------------------------------------------------------------------------- /test/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/setup.sh -------------------------------------------------------------------------------- /test/sharness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/sharness.sh -------------------------------------------------------------------------------- /test/t1100-git-auth.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/t1100-git-auth.t -------------------------------------------------------------------------------- /test/t1200-git-serve.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/t1200-git-serve.t -------------------------------------------------------------------------------- /test/t1300-git-update.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/t1300-git-update.t -------------------------------------------------------------------------------- /test/test_accepted_term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_accepted_term.py -------------------------------------------------------------------------------- /test/test_account_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_account_type.py -------------------------------------------------------------------------------- /test/test_accounts_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_accounts_routes.py -------------------------------------------------------------------------------- /test/test_adduser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_adduser.py -------------------------------------------------------------------------------- /test/test_api_rate_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_api_rate_limit.py -------------------------------------------------------------------------------- /test/test_asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_asgi.py -------------------------------------------------------------------------------- /test/test_aurblup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_aurblup.py -------------------------------------------------------------------------------- /test/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_auth.py -------------------------------------------------------------------------------- /test/test_auth_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_auth_routes.py -------------------------------------------------------------------------------- /test/test_ban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_ban.py -------------------------------------------------------------------------------- /test/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_cache.py -------------------------------------------------------------------------------- /test/test_captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_captcha.py -------------------------------------------------------------------------------- /test/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_config.py -------------------------------------------------------------------------------- /test/test_cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_cookies.py -------------------------------------------------------------------------------- /test/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_db.py -------------------------------------------------------------------------------- /test/test_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_defaults.py -------------------------------------------------------------------------------- /test/test_dependency_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_dependency_type.py -------------------------------------------------------------------------------- /test/test_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_email.py -------------------------------------------------------------------------------- /test/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_exceptions.py -------------------------------------------------------------------------------- /test/test_filelock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_filelock.py -------------------------------------------------------------------------------- /test/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_filters.py -------------------------------------------------------------------------------- /test/test_git_archives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_git_archives.py -------------------------------------------------------------------------------- /test/test_git_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_git_update.py -------------------------------------------------------------------------------- /test/test_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_group.py -------------------------------------------------------------------------------- /test/test_homepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_homepage.py -------------------------------------------------------------------------------- /test/test_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_html.py -------------------------------------------------------------------------------- /test/test_initdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_initdb.py -------------------------------------------------------------------------------- /test/test_l10n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_l10n.py -------------------------------------------------------------------------------- /test/test_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_license.py -------------------------------------------------------------------------------- /test/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_logging.py -------------------------------------------------------------------------------- /test/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_metrics.py -------------------------------------------------------------------------------- /test/test_mkpkglists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_mkpkglists.py -------------------------------------------------------------------------------- /test/test_notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_notify.py -------------------------------------------------------------------------------- /test/test_official_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_official_provider.py -------------------------------------------------------------------------------- /test/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_package.py -------------------------------------------------------------------------------- /test/test_package_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_package_base.py -------------------------------------------------------------------------------- /test/test_package_blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_package_blacklist.py -------------------------------------------------------------------------------- /test/test_package_comaintainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_package_comaintainer.py -------------------------------------------------------------------------------- /test/test_package_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_package_comment.py -------------------------------------------------------------------------------- /test/test_package_dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_package_dependency.py -------------------------------------------------------------------------------- /test/test_package_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_package_group.py -------------------------------------------------------------------------------- /test/test_package_keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_package_keyword.py -------------------------------------------------------------------------------- /test/test_package_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_package_license.py -------------------------------------------------------------------------------- /test/test_package_maintainer_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_package_maintainer_routes.py -------------------------------------------------------------------------------- /test/test_package_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_package_notification.py -------------------------------------------------------------------------------- /test/test_package_relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_package_relation.py -------------------------------------------------------------------------------- /test/test_package_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_package_request.py -------------------------------------------------------------------------------- /test/test_package_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_package_source.py -------------------------------------------------------------------------------- /test/test_package_vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_package_vote.py -------------------------------------------------------------------------------- /test/test_packages_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_packages_routes.py -------------------------------------------------------------------------------- /test/test_packages_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_packages_util.py -------------------------------------------------------------------------------- /test/test_pkgbase_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_pkgbase_routes.py -------------------------------------------------------------------------------- /test/test_pkgmaint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_pkgmaint.py -------------------------------------------------------------------------------- /test/test_pm_vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_pm_vote.py -------------------------------------------------------------------------------- /test/test_popupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_popupdate.py -------------------------------------------------------------------------------- /test/test_ratelimit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_ratelimit.py -------------------------------------------------------------------------------- /test/test_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_redis.py -------------------------------------------------------------------------------- /test/test_relation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_relation_type.py -------------------------------------------------------------------------------- /test/test_rendercomment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_rendercomment.py -------------------------------------------------------------------------------- /test/test_request_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_request_type.py -------------------------------------------------------------------------------- /test/test_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_requests.py -------------------------------------------------------------------------------- /test/test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_routes.py -------------------------------------------------------------------------------- /test/test_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_rpc.py -------------------------------------------------------------------------------- /test/test_rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_rss.py -------------------------------------------------------------------------------- /test/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_session.py -------------------------------------------------------------------------------- /test/test_spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_spawn.py -------------------------------------------------------------------------------- /test/test_ssh_pub_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_ssh_pub_key.py -------------------------------------------------------------------------------- /test/test_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_statistics.py -------------------------------------------------------------------------------- /test/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_templates.py -------------------------------------------------------------------------------- /test/test_term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_term.py -------------------------------------------------------------------------------- /test/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_time.py -------------------------------------------------------------------------------- /test/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_user.py -------------------------------------------------------------------------------- /test/test_usermaint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_usermaint.py -------------------------------------------------------------------------------- /test/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_util.py -------------------------------------------------------------------------------- /test/test_voteinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_voteinfo.py -------------------------------------------------------------------------------- /test/test_votereminder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/test/test_votereminder.py -------------------------------------------------------------------------------- /upgrading/1.2.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/1.2.10.txt -------------------------------------------------------------------------------- /upgrading/1.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/1.3.0.txt -------------------------------------------------------------------------------- /upgrading/1.5.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/1.5.2.txt -------------------------------------------------------------------------------- /upgrading/1.5.3.txt: -------------------------------------------------------------------------------- 1 | 1. Ensure this appears in config.inc: 2 | define("DEFAULT_LANG", "en"); 3 | -------------------------------------------------------------------------------- /upgrading/1.7.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/1.7.0.txt -------------------------------------------------------------------------------- /upgrading/1.8.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/1.8.0.txt -------------------------------------------------------------------------------- /upgrading/1.8.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/1.8.1.txt -------------------------------------------------------------------------------- /upgrading/1.8.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/1.8.2.txt -------------------------------------------------------------------------------- /upgrading/1.9.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/1.9.0.txt -------------------------------------------------------------------------------- /upgrading/1.9.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/1.9.1.txt -------------------------------------------------------------------------------- /upgrading/2.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/2.0.0.txt -------------------------------------------------------------------------------- /upgrading/2.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/2.1.0.txt -------------------------------------------------------------------------------- /upgrading/2.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/2.2.0.txt -------------------------------------------------------------------------------- /upgrading/2.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/2.3.0.txt -------------------------------------------------------------------------------- /upgrading/3.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/3.0.0.txt -------------------------------------------------------------------------------- /upgrading/3.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/3.1.0.txt -------------------------------------------------------------------------------- /upgrading/3.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/3.2.0.txt -------------------------------------------------------------------------------- /upgrading/3.4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/3.4.0.txt -------------------------------------------------------------------------------- /upgrading/3.5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/3.5.0.txt -------------------------------------------------------------------------------- /upgrading/4.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/4.0.0.txt -------------------------------------------------------------------------------- /upgrading/4.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/4.1.0.txt -------------------------------------------------------------------------------- /upgrading/4.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/4.2.0.txt -------------------------------------------------------------------------------- /upgrading/4.2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/4.2.1.txt -------------------------------------------------------------------------------- /upgrading/4.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/4.3.0.txt -------------------------------------------------------------------------------- /upgrading/4.4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/4.4.0.txt -------------------------------------------------------------------------------- /upgrading/4.4.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/4.4.1.txt -------------------------------------------------------------------------------- /upgrading/4.5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/4.5.0.txt -------------------------------------------------------------------------------- /upgrading/4.6.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/4.6.0.txt -------------------------------------------------------------------------------- /upgrading/4.7.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/4.7.0.txt -------------------------------------------------------------------------------- /upgrading/5.x.x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/5.x.x.txt -------------------------------------------------------------------------------- /upgrading/longerpkgname.txt: -------------------------------------------------------------------------------- 1 | ALTER TABLE Packages MODIFY Name CHAR(64) NOT NULL; 2 | -------------------------------------------------------------------------------- /upgrading/post-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/upgrading/post-checkout -------------------------------------------------------------------------------- /util/fix-coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/util/fix-coverage -------------------------------------------------------------------------------- /util/sendmail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/aurweb/HEAD/util/sendmail --------------------------------------------------------------------------------