├── .coveragerc ├── .gitignore ├── .gitlab-ci.yml ├── .mailmap ├── .pre-commit-config.yaml ├── .tx └── config ├── AUTHORS ├── CONTRIBUTING.md ├── COPYING ├── Dockerfile ├── INSTALL ├── README.md ├── TESTING ├── alembic.ini ├── aurweb ├── __init__.py ├── asgi.py ├── config.py ├── db.py ├── exceptions.py ├── git │ ├── __init__.py │ ├── auth.py │ ├── serve.py │ └── update.py ├── initdb.py ├── l10n.py ├── routers │ ├── __init__.py │ └── sso.py ├── schema.py ├── scripts │ ├── __init__.py │ ├── aurblup.py │ ├── mkpkglists.py │ ├── notify.py │ ├── pkgmaint.py │ ├── popupdate.py │ ├── rendercomment.py │ ├── tuvotereminder.py │ └── usermaint.py └── spawn.py ├── conf ├── cgitrc.proto ├── config.defaults ├── config.dev ├── fcgiwrap.service.proto └── fcgiwrap.socket.proto ├── doc ├── CodingGuidelines ├── Makefile ├── git-interface.txt ├── i18n.txt ├── maintenance.txt ├── rpc.txt └── sso.txt ├── migrations ├── README ├── env.py ├── script.py.mako └── versions │ ├── ef39fcd6e1cd_add_sso_account_id_in_table_users.py │ └── f47cad5d6d03_initial_revision.py ├── po ├── Makefile ├── ar.po ├── ast.po ├── aurweb.pot ├── ca.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── es.po ├── es_419.po ├── fi.po ├── fr.po ├── he.po ├── hr.po ├── hu.po ├── it.po ├── ja.po ├── nb.po ├── nl.po ├── pl.po ├── pt_BR.po ├── pt_PT.po ├── ro.po ├── ru.po ├── sk.po ├── sr.po ├── tr.po ├── uk.po ├── zh_CN.po └── zh_TW.po ├── schema └── gendummydata.py ├── setup.cfg ├── setup.py ├── test ├── Makefile ├── README.md ├── scripts │ └── cover ├── setup.sh ├── sharness.sh ├── t1100-git-auth.t ├── t1200-git-serve.t ├── t1300-git-update.t ├── t2100-mkpkglists.t ├── t2200-tuvotereminder.t ├── t2300-pkgmaint.t ├── t2400-aurblup.t ├── t2500-notify.t ├── t2600-rendercomment.t ├── t2700-usermaint.t ├── test_exceptions.py └── test_popupdate.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 └── web ├── html ├── 404.php ├── 503.php ├── account.php ├── addvote.php ├── comaintainers.php ├── commentedit.php ├── css │ ├── archnavbar │ │ ├── archlogo.png │ │ ├── archnavbar.css │ │ └── aurlogo.png │ ├── archweb.css │ ├── aurweb.css │ └── cgit.css ├── home.php ├── 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 ├── index.php ├── js │ └── bootstrap-typeahead.min.js ├── login.php ├── logout.php ├── packages.php ├── passreset.php ├── pkgbase.php ├── pkgdel.php ├── pkgdisown.php ├── pkgflag.php ├── pkgflagcomment.php ├── pkgmerge.php ├── pkgreq.php ├── register.php ├── rpc.php ├── rss.php ├── tos.php ├── tu.php └── voters.php ├── lib ├── DB.class.php ├── acctfuncs.inc.php ├── aur.inc.php ├── aurjson.class.php ├── cachefuncs.inc.php ├── confparser.inc.php ├── credentials.inc.php ├── feedcreator.class.php ├── gettext.php ├── pkgbasefuncs.inc.php ├── pkgfuncs.inc.php ├── pkgreqfuncs.inc.php ├── routing.inc.php ├── stats.inc.php ├── streams.php ├── timezone.inc.php ├── translator.inc.php └── version.inc.php ├── locale └── README └── template ├── account_delete.php ├── account_details.php ├── account_edit_form.php ├── account_search_results.php ├── cgit ├── footer.html └── header.html ├── comaintainers_form.php ├── flag_comment.php ├── footer.php ├── header.php ├── pkg_comment_box.php ├── pkg_comment_form.php ├── pkg_comments.php ├── pkg_details.php ├── pkg_search_form.php ├── pkg_search_results.php ├── pkgbase_actions.php ├── pkgbase_details.php ├── pkgreq_close_form.php ├── pkgreq_form.php ├── pkgreq_results.php ├── search_accounts_form.php ├── stats ├── general_stats_table.php ├── updates_table.php └── user_table.php ├── template.phps ├── tu_details.php ├── tu_last_votes_list.php └── tu_list.php /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/INSTALL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/README.md -------------------------------------------------------------------------------- /TESTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/TESTING -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/alembic.ini -------------------------------------------------------------------------------- /aurweb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aurweb/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/asgi.py -------------------------------------------------------------------------------- /aurweb/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/config.py -------------------------------------------------------------------------------- /aurweb/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/db.py -------------------------------------------------------------------------------- /aurweb/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/exceptions.py -------------------------------------------------------------------------------- /aurweb/git/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aurweb/git/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/git/auth.py -------------------------------------------------------------------------------- /aurweb/git/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/git/serve.py -------------------------------------------------------------------------------- /aurweb/git/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/git/update.py -------------------------------------------------------------------------------- /aurweb/initdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/initdb.py -------------------------------------------------------------------------------- /aurweb/l10n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/l10n.py -------------------------------------------------------------------------------- /aurweb/routers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/routers/__init__.py -------------------------------------------------------------------------------- /aurweb/routers/sso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/routers/sso.py -------------------------------------------------------------------------------- /aurweb/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/schema.py -------------------------------------------------------------------------------- /aurweb/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aurweb/scripts/aurblup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/scripts/aurblup.py -------------------------------------------------------------------------------- /aurweb/scripts/mkpkglists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/scripts/mkpkglists.py -------------------------------------------------------------------------------- /aurweb/scripts/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/scripts/notify.py -------------------------------------------------------------------------------- /aurweb/scripts/pkgmaint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/scripts/pkgmaint.py -------------------------------------------------------------------------------- /aurweb/scripts/popupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/scripts/popupdate.py -------------------------------------------------------------------------------- /aurweb/scripts/rendercomment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/scripts/rendercomment.py -------------------------------------------------------------------------------- /aurweb/scripts/tuvotereminder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/scripts/tuvotereminder.py -------------------------------------------------------------------------------- /aurweb/scripts/usermaint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/scripts/usermaint.py -------------------------------------------------------------------------------- /aurweb/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/aurweb/spawn.py -------------------------------------------------------------------------------- /conf/cgitrc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/conf/cgitrc.proto -------------------------------------------------------------------------------- /conf/config.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/conf/config.defaults -------------------------------------------------------------------------------- /conf/config.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/conf/config.dev -------------------------------------------------------------------------------- /conf/fcgiwrap.service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/conf/fcgiwrap.service.proto -------------------------------------------------------------------------------- /conf/fcgiwrap.socket.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/conf/fcgiwrap.socket.proto -------------------------------------------------------------------------------- /doc/CodingGuidelines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/doc/CodingGuidelines -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/git-interface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/doc/git-interface.txt -------------------------------------------------------------------------------- /doc/i18n.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/doc/i18n.txt -------------------------------------------------------------------------------- /doc/maintenance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/doc/maintenance.txt -------------------------------------------------------------------------------- /doc/rpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/doc/rpc.txt -------------------------------------------------------------------------------- /doc/sso.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/doc/sso.txt -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/migrations/README -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/ef39fcd6e1cd_add_sso_account_id_in_table_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/migrations/versions/ef39fcd6e1cd_add_sso_account_id_in_table_users.py -------------------------------------------------------------------------------- /migrations/versions/f47cad5d6d03_initial_revision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/migrations/versions/f47cad5d6d03_initial_revision.py -------------------------------------------------------------------------------- /po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/Makefile -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/aurweb.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/aurweb.pot -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/el.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/es.po -------------------------------------------------------------------------------- /po/es_419.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/es_419.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/pt_PT.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /schema/gendummydata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/schema/gendummydata.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/setup.py -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/README.md -------------------------------------------------------------------------------- /test/scripts/cover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/scripts/cover -------------------------------------------------------------------------------- /test/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/setup.sh -------------------------------------------------------------------------------- /test/sharness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/sharness.sh -------------------------------------------------------------------------------- /test/t1100-git-auth.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/t1100-git-auth.t -------------------------------------------------------------------------------- /test/t1200-git-serve.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/t1200-git-serve.t -------------------------------------------------------------------------------- /test/t1300-git-update.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/t1300-git-update.t -------------------------------------------------------------------------------- /test/t2100-mkpkglists.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/t2100-mkpkglists.t -------------------------------------------------------------------------------- /test/t2200-tuvotereminder.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/t2200-tuvotereminder.t -------------------------------------------------------------------------------- /test/t2300-pkgmaint.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/t2300-pkgmaint.t -------------------------------------------------------------------------------- /test/t2400-aurblup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/t2400-aurblup.t -------------------------------------------------------------------------------- /test/t2500-notify.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/t2500-notify.t -------------------------------------------------------------------------------- /test/t2600-rendercomment.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/t2600-rendercomment.t -------------------------------------------------------------------------------- /test/t2700-usermaint.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/t2700-usermaint.t -------------------------------------------------------------------------------- /test/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/test_exceptions.py -------------------------------------------------------------------------------- /test/test_popupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/test/test_popupdate.py -------------------------------------------------------------------------------- /upgrading/1.2.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/1.2.10.txt -------------------------------------------------------------------------------- /upgrading/1.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/1.3.0.txt -------------------------------------------------------------------------------- /upgrading/1.5.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/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/lfos/aurweb/HEAD/upgrading/1.7.0.txt -------------------------------------------------------------------------------- /upgrading/1.8.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/1.8.0.txt -------------------------------------------------------------------------------- /upgrading/1.8.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/1.8.1.txt -------------------------------------------------------------------------------- /upgrading/1.8.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/1.8.2.txt -------------------------------------------------------------------------------- /upgrading/1.9.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/1.9.0.txt -------------------------------------------------------------------------------- /upgrading/1.9.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/1.9.1.txt -------------------------------------------------------------------------------- /upgrading/2.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/2.0.0.txt -------------------------------------------------------------------------------- /upgrading/2.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/2.1.0.txt -------------------------------------------------------------------------------- /upgrading/2.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/2.2.0.txt -------------------------------------------------------------------------------- /upgrading/2.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/2.3.0.txt -------------------------------------------------------------------------------- /upgrading/3.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/3.0.0.txt -------------------------------------------------------------------------------- /upgrading/3.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/3.1.0.txt -------------------------------------------------------------------------------- /upgrading/3.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/3.2.0.txt -------------------------------------------------------------------------------- /upgrading/3.4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/3.4.0.txt -------------------------------------------------------------------------------- /upgrading/3.5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/3.5.0.txt -------------------------------------------------------------------------------- /upgrading/4.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/4.0.0.txt -------------------------------------------------------------------------------- /upgrading/4.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/4.1.0.txt -------------------------------------------------------------------------------- /upgrading/4.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/4.2.0.txt -------------------------------------------------------------------------------- /upgrading/4.2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/4.2.1.txt -------------------------------------------------------------------------------- /upgrading/4.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/4.3.0.txt -------------------------------------------------------------------------------- /upgrading/4.4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/4.4.0.txt -------------------------------------------------------------------------------- /upgrading/4.4.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/4.4.1.txt -------------------------------------------------------------------------------- /upgrading/4.5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/4.5.0.txt -------------------------------------------------------------------------------- /upgrading/4.6.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/4.6.0.txt -------------------------------------------------------------------------------- /upgrading/4.7.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/upgrading/4.7.0.txt -------------------------------------------------------------------------------- /upgrading/5.x.x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/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/lfos/aurweb/HEAD/upgrading/post-checkout -------------------------------------------------------------------------------- /web/html/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/404.php -------------------------------------------------------------------------------- /web/html/503.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/503.php -------------------------------------------------------------------------------- /web/html/account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/account.php -------------------------------------------------------------------------------- /web/html/addvote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/addvote.php -------------------------------------------------------------------------------- /web/html/comaintainers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/comaintainers.php -------------------------------------------------------------------------------- /web/html/commentedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/commentedit.php -------------------------------------------------------------------------------- /web/html/css/archnavbar/archlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/css/archnavbar/archlogo.png -------------------------------------------------------------------------------- /web/html/css/archnavbar/archnavbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/css/archnavbar/archnavbar.css -------------------------------------------------------------------------------- /web/html/css/archnavbar/aurlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/css/archnavbar/aurlogo.png -------------------------------------------------------------------------------- /web/html/css/archweb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/css/archweb.css -------------------------------------------------------------------------------- /web/html/css/aurweb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/css/aurweb.css -------------------------------------------------------------------------------- /web/html/css/cgit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/css/cgit.css -------------------------------------------------------------------------------- /web/html/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/home.php -------------------------------------------------------------------------------- /web/html/images/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/images/ICON-LICENSE -------------------------------------------------------------------------------- /web/html/images/action-undo.min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/images/action-undo.min.svg -------------------------------------------------------------------------------- /web/html/images/action-undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/images/action-undo.svg -------------------------------------------------------------------------------- /web/html/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/images/ajax-loader.gif -------------------------------------------------------------------------------- /web/html/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/images/favicon.ico -------------------------------------------------------------------------------- /web/html/images/pencil.min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/images/pencil.min.svg -------------------------------------------------------------------------------- /web/html/images/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/images/pencil.svg -------------------------------------------------------------------------------- /web/html/images/pin.min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/images/pin.min.svg -------------------------------------------------------------------------------- /web/html/images/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/images/pin.svg -------------------------------------------------------------------------------- /web/html/images/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/images/rss.svg -------------------------------------------------------------------------------- /web/html/images/unpin.min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/images/unpin.min.svg -------------------------------------------------------------------------------- /web/html/images/unpin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/images/unpin.svg -------------------------------------------------------------------------------- /web/html/images/x.min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/images/x.min.svg -------------------------------------------------------------------------------- /web/html/images/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/images/x.svg -------------------------------------------------------------------------------- /web/html/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/index.php -------------------------------------------------------------------------------- /web/html/js/bootstrap-typeahead.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/js/bootstrap-typeahead.min.js -------------------------------------------------------------------------------- /web/html/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/login.php -------------------------------------------------------------------------------- /web/html/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/logout.php -------------------------------------------------------------------------------- /web/html/packages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/packages.php -------------------------------------------------------------------------------- /web/html/passreset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/passreset.php -------------------------------------------------------------------------------- /web/html/pkgbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/pkgbase.php -------------------------------------------------------------------------------- /web/html/pkgdel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/pkgdel.php -------------------------------------------------------------------------------- /web/html/pkgdisown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/pkgdisown.php -------------------------------------------------------------------------------- /web/html/pkgflag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/pkgflag.php -------------------------------------------------------------------------------- /web/html/pkgflagcomment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/pkgflagcomment.php -------------------------------------------------------------------------------- /web/html/pkgmerge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/pkgmerge.php -------------------------------------------------------------------------------- /web/html/pkgreq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/pkgreq.php -------------------------------------------------------------------------------- /web/html/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/register.php -------------------------------------------------------------------------------- /web/html/rpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/rpc.php -------------------------------------------------------------------------------- /web/html/rss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/rss.php -------------------------------------------------------------------------------- /web/html/tos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/tos.php -------------------------------------------------------------------------------- /web/html/tu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/tu.php -------------------------------------------------------------------------------- /web/html/voters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/html/voters.php -------------------------------------------------------------------------------- /web/lib/DB.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/DB.class.php -------------------------------------------------------------------------------- /web/lib/acctfuncs.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/acctfuncs.inc.php -------------------------------------------------------------------------------- /web/lib/aur.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/aur.inc.php -------------------------------------------------------------------------------- /web/lib/aurjson.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/aurjson.class.php -------------------------------------------------------------------------------- /web/lib/cachefuncs.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/cachefuncs.inc.php -------------------------------------------------------------------------------- /web/lib/confparser.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/confparser.inc.php -------------------------------------------------------------------------------- /web/lib/credentials.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/credentials.inc.php -------------------------------------------------------------------------------- /web/lib/feedcreator.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/feedcreator.class.php -------------------------------------------------------------------------------- /web/lib/gettext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/gettext.php -------------------------------------------------------------------------------- /web/lib/pkgbasefuncs.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/pkgbasefuncs.inc.php -------------------------------------------------------------------------------- /web/lib/pkgfuncs.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/pkgfuncs.inc.php -------------------------------------------------------------------------------- /web/lib/pkgreqfuncs.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/pkgreqfuncs.inc.php -------------------------------------------------------------------------------- /web/lib/routing.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/routing.inc.php -------------------------------------------------------------------------------- /web/lib/stats.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/stats.inc.php -------------------------------------------------------------------------------- /web/lib/streams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/streams.php -------------------------------------------------------------------------------- /web/lib/timezone.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/timezone.inc.php -------------------------------------------------------------------------------- /web/lib/translator.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfos/aurweb/HEAD/web/lib/translator.inc.php -------------------------------------------------------------------------------- /web/lib/version.inc.php: -------------------------------------------------------------------------------- 1 |