apm_serve_tarball

one of the documented procedures in this installation of the ACS
Usage:
apm_serve_tarball
What it does:
Serves a tarball (.apm file) for a package.
Defined in: /web/philip/packages/acs-core/apm-admin-procs.tcl

Source code:


    ad_page_variables {
	version_id
    }

    ReturnHeaders "application/octet-stream"
    db_with_handle db {
	ns_ora write_blob $db "select distribution_tarball from apm_package_versions where version_id = $version_id"
    }


philg@mit.edu