better docs

This commit is contained in:
Aaron Seigo 2011-05-26 17:22:43 +02:00
parent 1a255a51de
commit a51925dff1

View File

@ -274,13 +274,15 @@ enum AnnouncementMethod {
Q_DECLARE_FLAGS(AnnouncementMethods, AnnouncementMethod) Q_DECLARE_FLAGS(AnnouncementMethods, AnnouncementMethod)
enum TrustLevel { enum TrustLevel {
UnverifiableTrust = 0, /**< The plasmoid is shipped without any signature file*/ UnverifiableTrust = 0, /**< The trust of the object can not be verified, usually because no
CompletelyUntrusted, /**< The plasmoid has been signed with a broken/expired/false signature*/ trust information (e.g. a cryptographic signature) was provided */
UnknownTrusted, /**< The plasmoid has been signed with an unknown key*/ CompletelyUntrusted, /**< The signature is broken/expired/false */
UserTrusted, /**< The plasmoid has been signed with a key signed by the user himself*/ UnknownTrusted, /**< The signature is valid, but the key is unknown */
SelfTrusted, /**< The plasmoid has been signed with a user key*/ UserTrusted, /**< The signature is valid and made with a key signed by one of the
FullyTrusted, /**< The plasmoid has been signed with a key signed by a KDE key*/ user's own keys*/
UltimatelyTrusted /**< The plasmoid has been signed with a KDE key*/ SelfTrusted, /**< The signature is valid and made with one of the user's own keys*/
FullyTrusted, /**< The signature is valid and made with a key signed by the vendor's key*/
UltimatelyTrusted /**< The signature is valid and made with the vendor's key*/
}; };
Q_ENUMS(TrustLevel) Q_ENUMS(TrustLevel)