Variable: gravatar-rating

gravatar-rating is a customizable variable defined in gravatar.el.gz.

Value

"g"

Documentation

Most explicit Gravatar rating level to allow.

Some gravatars are rated according to how suitable they are for different audiences. The supported rating levels are, in order of increasing explicitness, the following:

"g" - Suitable for any audience.
"pg" - May contain rude gestures, provocatively dressed
       individuals, mild profanity, or mild violence.
"r" - May contain harsh profanity, intense violence, nudity,
       or hard drug use.
"x" - May contain hardcore sexual imagery or extremely
       disturbing violence.

Each level covers itself as well as all less explicit levels. For example, setting this variable to "pg" will allow gravatars rated either "g" or "pg".

This variable was added, or its default value changed, in Emacs 27.1.

Source Code

;; Defined in /usr/src/emacs/lisp/image/gravatar.el.gz
(defcustom gravatar-rating "g"
  "Most explicit Gravatar rating level to allow.
Some gravatars are rated according to how suitable they are for
different audiences.  The supported rating levels are, in order
of increasing explicitness, the following:

\"g\"  - Suitable for any audience.
\"pg\" - May contain rude gestures, provocatively dressed
       individuals, mild profanity, or mild violence.
\"r\"  - May contain harsh profanity, intense violence, nudity,
       or hard drug use.
\"x\"  - May contain hardcore sexual imagery or extremely
       disturbing violence.

Each level covers itself as well as all less explicit levels.
For example, setting this variable to \"pg\" will allow gravatars
rated either \"g\" or \"pg\"."
  :type '(choice (const :tag "General Audience" "g")
                 (const :tag "Parental Guidance" "pg")
                 (const :tag "Restricted" "r")
                 (const :tag "Explicit" "x"))
  ;; Restricted :type to ratings recognized by Gravatar.
  :version "27.1"
  :group 'gravatar)