Lines Matching defs:properties

107 # The strings in the value field refer to the boolean properties of the
145 # These properties are declared here so that they show up in the pydoc
172 # Note that the properties set here are intentionally lacking
511 """A method used to prevent certain properties defined in the
521 # Ensure we can't set any of the following properties.
523 "proxies is an invalid property for ProxyURI properties")
526 "ssl_cert is an invalid property for ProxyURI properties")
529 "ssl_key is an invalid property for ProxyURI properties")
532 "priority is an invalid property for ProxyURI properties")
535 "trailing_slash is an invalid property for ProxyURI properties")
540 RepositoryURI, each with different properties.
669 properties from the given RepositoryURI, 'repouri'.
676 # other per-origin/mirror properties
719 # These properties are declared here so that they show up in the pydoc
783 # Note that the properties set here are intentionally lacking
1185 # These properties are declared here so that they show up in the pydoc
1224 # Note that the properties set here are intentionally lacking
1259 self.properties.update(props)
1308 props=self.properties,
2513 """Update the properties set for this publisher with the ones
2515 existing properties are unset, then properties are set to their
2516 new values, then values are added to properties, and finally
2517 values are removed from properties."""
2522 # Remove existing properties.
2524 self.properties.pop(n, None)
2525 # Add or reset new properties.
2526 self.properties.update(set_props)
2527 # Add new values to properties.
2529 self.properties.setdefault(n, [])
2530 if not isinstance(self.properties[n], list):
2535 ).format(name=n, value=self.properties[n]))
2536 self.properties[n].extend(add_prop_values[n])
2537 # Remove values from properties.
2539 if n not in self.properties:
2544 if not isinstance(self.properties[n], list):
2550 name=n, value=self.properties[n]))
2553 self.properties[n].remove(v)
2565 """Check that the properties set for this publisher are
2974 """Accessor method for properties dictionary"""
3042 """Accessor method for properties"""
3053 """Support iteritems on properties"""
3057 """Support keys() on properties"""
3061 """Support values() on properties"""
3065 """Support getdefault() on properties"""
3069 """Support setdefault() on properties"""
3074 self.properties[name] = value
3078 """Support update() on properties"""
3088 self.properties[k] = v
3091 """Support pop() on properties"""
3097 properties = DictProperty(__get_prop, __set_prop, __del_prop,
3099 doc="A dict holding the properties for an image.",
3109 txt = self.properties.get(SIGNATURE_POLICY,
3111 names = self.properties.get("signature-required-names", [])