{% extends "master.html" %} {% block title %} API | PkgDB {% endblock %} {%block tag %}index{% endblock %} {% block content %}

Collections

{% for html in collections %} {% autoescape false %} {{ html | InsertDiv}} {% endautoescape %} {% endfor %}

Packagers

{% for html in packagers %} {% autoescape false %} {{ html | InsertDiv}} {% endautoescape %} {% endfor %}

Packages

{% for html in packages %} {% autoescape false %} {{ html | InsertDiv}} {% endautoescape %} {% endfor %}

ACLs

{% for html in acls %} {% autoescape false %} {{ html | InsertDiv}} {% endautoescape %} {% endfor %}

Extras

The pkgdb2 api has few other endpoints that are used for very specific tasks such as synchronizing the point of contact and CC list with bugzilla, or synchronizing the ACLs with the version control system (vcs). These endpoints, althought listed here, are not quite meant for public consumption, you may use them, just be cautious.

{% for html in extras %} {% autoescape false %} {{ html | InsertDiv}} {% endautoescape %} {% endfor %} {% endblock %} {% block jscripts %} {{ super() }} {% endblock %}