/pkg/src/tests/cli/ |
H A D | t_publish_api.py | 61 xport = transport.Transport(xport_cfg) 68 xport=xport, pub=pub) 87 xport = transport.Transport(xport_cfg) 94 xport=xport, pub=pub)
|
H A D | t_pkgrecv.py | 570 xport, xport_cfg = transport.setup_transport() 594 xport, xport_cfg = transport.setup_transport() 1376 xport, xport_cfg = transport.setup_transport()
|
/pkg/src/ |
H A D | publish.py | 178 xport, pub = setup_transport_and_pubs(repo_uri, remote=False) 182 repo_props=repo_props, xport=xport, pub=pub) 214 xport, pub = setup_transport_and_pubs(repo_uri) 216 t = trans.Transaction(repo_uri, pkg_name=pargs[0], xport=xport, pub=pub) 244 xport, pub = setup_transport_and_pubs(repo_uri) 246 t = trans.Transaction(repo_uri, pkg_name=pargs[0], xport=xport, pub=pub) 279 xport, pu [all...] |
H A D | sign.py | 102 def fetch_catalog(src_pub, xport, temp_root): 110 src_pub.transport = xport 243 xport, xport_cfg = transport.setup_transport() 248 transport.setup_publisher(repo_uri, "source", xport, 274 cat = fetch_catalog(p, xport, temp_root) 290 m_str = xport.get_manifest(pfmri, 351 pkg_name=str(pfmri), xport=xport,
|
H A D | pkgrepo.py | 317 xport, xport_cfg = transport.setup_transport() 328 src_pub = transport.setup_publisher(str(repo_uri), pub, xport, 332 return xport, src_pub, tmp_dir 547 xport, xpub, tmp_dir = setup_transport(conf.get("repo_uri"), 552 return _get_pub(conf, subcommand, xport, xpub, omit_headers, 554 return _get_repo(conf, subcommand, xport, xpub, omit_headers, 558 def _get_repo(conf, subcommand, xport, xpub, omit_headers, out_format, pargs): 563 stat_idx = xport.get_status(xpub) 629 def _get_matching_pubs(subcommand, pubs, xport, xpub, out_format="default", 633 pub_data = xport [all...] |
H A D | pull.py | 69 xport = None variable 246 m = xport.get_manifest(pfmri) 398 global archive, cache_dir, download_start, xport, xport_cfg, \ 543 xport, xport_cfg = transport.setup_transport() 556 transport.setup_publisher(src_uri, "source", xport, xport_cfg, 593 def get_matches(src_pub, tracker, xport, pargs, any_unmatched, any_matched, 598 src_cat = fetch_catalog(src_pub, tracker, xport, False) 761 global cache_dir, download_start, xport, xport_cfg 798 matches = get_matches(src_pub, tracker, xport, pargs, 921 mfile = xport [all...] |
/pkg/src/modules/publish/ |
H A D | transaction.py | 139 repo_props=EmptyDict, trans_id=None, xport=None, pub=None, 205 repo_props=EmptyDict, trans_id=None, xport=None, pub=None, 218 self.transport = xport 716 repo_props=EmptyDict, trans_id=None, noexecute=False, xport=None, 725 if scheme != "null" and (not xport or not pub): 754 repo_props=repo_props, trans_id=trans_id, xport=xport,
|
/pkg/src/util/publish/ |
H A D | pkgmerge.py | 73 xport = None variable 192 mfst_str = xport.get_manifest(fmri, pub=repouri, content_only=True) 198 global dry_run, tmpdir, xport, dest_xport, target_pub 302 xport, xport_cfg = transport.setup_transport() 309 "pkgmerge", xport, xport_cfg, remote_prefix=True) 338 pub.transport = xport 428 tracker, xport, dest_repo, dest_xport, pkg_tmpdir, 460 variants, tracker, xport, dest_repo, dest_xport, pkg_tmpdir, 474 xport the transport handling our source repositories 521 mfile = xport [all...] |
H A D | pkgsurf.py | 192 def fetch_catalog(src_pub, xport, temp_root): 200 src_pub.transport = xport
|
/pkg/src/modules/client/transport/ |
H A D | transport.py | 3391 def __init__(self, pub, xport, progtrack, ccancel, alt_repo=None, 3394 The transport object should be passed in xport.""" 3399 self._transport = xport 3504 def __init__(self, pub, xport, final_dir=None, decompress=False, 3507 The transport object should be passed in xport. 3512 in the 'xport' object.""" 3514 MultiFile.__init__(self, pub, xport, progtrack=progtrack, 3658 def setup_publisher(repo_uri, prefix, xport, xport_cfg, 3661 """Given transport 'xport' and publisher configuration 'xport_cfg' 3690 newpubs = xport [all...] |