Lines Matching refs:publishers
106 URLs, publishers, properties, etc. that allow an Image to operate."""
302 del self.publishers[prefix]
324 """Accessor method for publishers dictionary"""
336 """Accessor method for publishers"""
351 """Support iteritems on publishers"""
355 """Support keys() on publishers"""
359 """Support values() on publishers"""
423 # variant can impact the processing of publishers. (Notably,
477 self.publishers[k] = a
491 # Ensure that all configured publishers are present in
493 # Also ensure that all publishers in search order that
1003 publishers = DictProperty(__get_publisher, __set_publisher,
1020 self.publishers = {}
1205 self.sys_cfg.publishers[p.prefix] = p
1242 added system publishers, and the publisher objects for the
1243 system publishers which were removed.
1265 # keep track of old system publishers which are becoming
1266 # disabled image publishers (because they have packages
1270 # Merge in previously existing system publishers which have
1274 if prefix in sys_cfg.publishers or \
1275 prefix in img_cfg.publishers or \
1281 if not old_sysconfig.publishers[prefix].disabled:
1284 sys_cfg.publishers[prefix] = \
1285 old_sysconfig.publishers[prefix]
1286 sys_cfg.publishers[prefix].disabled = True
1291 sys_cfg.publishers[prefix].repository.origins = []
1292 sys_cfg.publishers[prefix].repository.mirrors = []
1296 for prefix in set(old_sysconfig.publishers) & \
1297 set(sys_cfg.publishers):
1298 pold = old_sysconfig.publishers[prefix]
1299 pnew = sys_cfg.publishers[prefix]
1309 for p in sys_cfg.publishers.values():
1329 # publishers.
1331 for p in sys_cfg.publishers:
1332 res[p] = sys_cfg.publishers[p]
1333 for p in img_cfg.publishers.values():
1353 new_pubs = set(sys_cfg.publishers.keys())
1354 old_pubs = set(old_sysconfig.publishers.keys())
1356 # Find the system publishers which appeared or vanished. This
1363 old_sysconfig.publishers[p]
1367 old_sysconfig.publishers[p]
1384 self.img_cfg.publishers[p.prefix] = p
1399 if p.prefix in self.img_cfg.publishers:
1400 old_pub = self.img_cfg.publishers[p.prefix]
1426 self.img_cfg.publishers[p.prefix] = user_pub
1460 if not self.sys_cfg.publishers[p].disabled
1468 if self.sys_cfg.publishers[p].disabled and \
1523 return prefix in self.sys_cfg.publishers
1527 del self.publishers[prefix]
1547 "is a system publisher and other publishers cannot "
1571 """Accessor method for publishers dictionary"""
1583 """Accessor method for publishers"""
1588 del self.img_cfg.publishers[prefix]
1595 """Support iteritems on publishers"""
1599 """Support keys() on publishers"""
1603 """Support values() on publishers"""
1607 # overlapping sets of publishers
1608 publishers = DictProperty(__get_publisher, __set_publisher,