/pkg/src/tests/api/ |
H A D | t_p5i.py | 39 import pkg.p5i as p5i namespace 49 """Class to test the functionality of the pkg.p5i module.""" 110 """Verify that the p5i parsing and writing works as expected.""" 112 # Verify that p5i export and parse works as expected. 123 # Dump the p5i data. 125 p5i.write(fobj, [pub], pkg_names=pnames) 127 # Verify that the p5i data ends with a terminating newline. 163 validate_results(p5i.parse(fileobj=fobj)) 172 validate_results(p5i [all...] |
/pkg/src/web/_themes/default/en/ |
H A D | base.css | 32 a.p5i { 33 background: transparent url(../../p5i-link.png) scroll no-repeat right center;
|
/pkg/src/web/_themes/sun.com/en/ |
H A D | base.css | 31 a.p5i { 32 background: transparent url(../../p5i-link.png) scroll no-repeat right center;
|
/pkg/src/util/apache2/sysrepo/ |
H A D | reference_httpd.conf | 343 # Add a new mime.type for .p5i file extension so that clicking on 345 AddType application/vnd.pkg5.info .p5i
|
/pkg/src/util/apache2/depot/ |
H A D | depot_index.py | 43 import pkg.p5i namespace 574 def p5i(self, *tokens): member in class:WsgiDepot 575 """Use a DepotHTTP to return a p5i response.""" 580 headers["Content-Type"] = pkg.p5i.MIME_TYPE 763 elif "/p5i/0/" in path_info: 764 cherrypy.response.body = self.app.p5i(*toks,
|
/pkg/src/web/_themes/opensolaris.com/en/ |
H A D | base.css | 37 a.p5i { 38 background: transparent url(../../p5i-link.png) scroll no-repeat right center;
|
/pkg/src/web/_themes/opensolaris.org/en/ |
H A D | base.css | 31 a.p5i { 32 background: transparent url(../../p5i-link.png) scroll no-repeat right center;
|
/pkg/src/tests/cli/ |
H A D | t_pkg_depotd.py | 52 import pkg.p5i as p5i namespace 1025 entries = p5i.parse(location=purl) 1058 """Verify the output of the depot /p5i operation.""" 1072 # Now, for each published package, attempt to get a p5i file 1076 purl = urljoin(durl, "p5i/0/{0}".format(p)) 1077 pub, pkglist = p5i.parse(location=purl)[0] 1079 # p5i files contain non-qualified FMRIs as the FMRIs 1088 purl = urljoin(durl, "p5i/0/{0}".format(stem)) 1089 pub, pkglist = p5i [all...] |
/pkg/src/modules/server/ |
H A D | depot.py | 80 import pkg.p5i as p5i namespace 114 "p5i", 128 "p5i", 1294 "Content-Type", p5i.MIME_TYPE)]) 1312 p5i.write(buf, pubs) 1324 "Content-Type", p5i.MIME_TYPE)]) 1349 p5i.write(buf, pubs) 1400 p5i.write(buf, [pub], pkg_names=pkg_names) 1405 "Content-Type", p5i [all...] |
H A D | repository.py | 58 import pkg.p5i as p5i namespace 1345 p5ipath = os.path.join(self.root, "pub.p5i") 1347 pubs = p5i.parse(location=p5ipath) 1353 # No p5i exists, or existing one doesn't contain publisher info, 1818 p5ipath = os.path.join(self.root, "pub.p5i") 1844 p5i.write(ef, [pub]) 1846 # we use simpleson.dump() in p5i.write(), 1852 p5i.write(fp, [pub])
|
/pkg/src/ |
H A D | depot-config.py | 52 import pkg.p5i as p5i namespace 366 p5i.write(pub_file, [pub]) 374 p5i.write(pub_file, pub_objs)
|
/pkg/src/web/_themes/oracle.com/en/ |
H A D | base.css | 167 a.p5i { 168 background: transparent url(../../p5i-link.png) scroll no-repeat right center;
|
/pkg/src/modules/ |
H A D | p5p.py | 46 import pkg.p5i namespace 1174 # See if this publisher has a .p5i file in the 1177 "pub.p5i") 1181 # No p5i; that's ok. 1185 pubs = pkg.p5i.parse(fileobj=fobj) 1245 # signed packages present, and p5i information for each 1255 # Create a p5i file. 1257 pkg.p5i.write(fobj, [npub]) 1260 # Queue the p5i file for addition to the archive. 1262 "pub.p5i") [all...] |
/pkg/src/modules/client/transport/ |
H A D | repo.py | 43 import pkg.p5i as p5i namespace 1477 p5i.write(buf, pubs) 2141 p5i.write(buf, pubs)
|
H A D | transport.py | 61 import pkg.p5i as p5i namespace 1002 pub_data = p5i.parse(data=infostr)
|
/pkg/src/modules/client/ |
H A D | api.py | 93 import pkg.p5i as p5i namespace 5432 'data' is an optional string containing the p5i data. 5444 return p5i.parse(data=data, fileobj=fileobj, location=location) 5537 to the provided file-like object 'fileobj' in JSON p5i format. 5566 # before passing them to the p5i module. 5576 p5i.write(fileobj, plist, pkg_names=new_pkg_names)
|